/snap/core18/2999/sbin
NameSizeModeActions
agetty565520755editdlrm
apparmor_parser14804320755editdlrm
badblocks266320755editdlrm
blkdeactivate148400755editdlrm
blkdiscard267040755editdlrm
blkid881760755editdlrm
blockdev389840755editdlrm
bridge882240755editdlrm
cfdisk967040755editdlrm
chcpu226000755editdlrm
ctrlaltdel185040755editdlrm
debugfs2226880755editdlrm
depmod1703520755editdlrm
devlink800400755editdlrm
dhclient5001440755editdlrm
dhclient-script156170755editdlrm
dmsetup1626160755editdlrm
dmstats1626160755editdlrm
dosfsck594720755editdlrm
dosfslabel553760755editdlrm
dumpe2fs267040755editdlrm
e2fsck3140800755editdlrm
e2image348960755editdlrm
e2label1047040755editdlrm
e2undo185040755editdlrm
fatlabel553760755editdlrm
fdisk1250560755editdlrm
findfs103120755editdlrm
fsck472320755editdlrm
fsck.cramfs349280755editdlrm
fsck.ext23140800755editdlrm
fsck.ext33140800755editdlrm
fsck.ext43140800755editdlrm
fsck.fat594720755editdlrm
fsck.minix922640755editdlrm
fsck.msdos594720755editdlrm
fsck.vfat594720755editdlrm
fsfreeze103120755editdlrm
fstab-decode61360755editdlrm
fstrim430880755editdlrm
getty565520755editdlrm
halt11198560755editdlrm
hwclock595840755editdlrm
init18499920755editdlrm
insmod1703520755editdlrm
installkernel26380755editdlrm
ip7188960755editdlrm
ip6tables949680755editdlrm
ip6tables-restore949680755editdlrm
ip6tables-save949680755editdlrm
iptables949680755editdlrm
iptables-restore949680755editdlrm
iptables-save949680755editdlrm
isosize226080755editdlrm
killall5226080755editdlrm
ldconfig3870755editdlrm
ldconfig.real10257120755editdlrm
logsave102400755editdlrm
losetup841600755editdlrm
lsmod1703520755editdlrm
mkdosfs353280755editdlrm
mke2fs1293440755editdlrm
mkfs103120755editdlrm
mkfs.bfs308000755editdlrm
mkfs.cramfs348240755editdlrm
mkfs.ext21293440755editdlrm
mkfs.ext31293440755editdlrm
mkfs.ext41293440755editdlrm
mkfs.fat353280755editdlrm
mkfs.minix799600755editdlrm
mkfs.msdos353280755editdlrm
mkfs.vfat353280755editdlrm
mkhomedir_helper184480755editdlrm
mkswap799520755editdlrm
modinfo1703520755editdlrm
modprobe1703520755editdlrm
pam_extrausers_chkpwd348162755editdlrm
pam_extrausers_update348160755editdlrm
pam_tally102480755editdlrm
pam_tally2143440755editdlrm
pivot_root103120755editdlrm
poweroff11198560755editdlrm
raw144080755editdlrm
reboot11198560755editdlrm
resize2fs594640755editdlrm
rmmod1703520755editdlrm
rtacct410960755editdlrm
rtmon512000755editdlrm
runlevel11198560755editdlrm
runuser430800755editdlrm
sfdisk1086240755editdlrm
shadowconfig8850755editdlrm
shutdown11198560755editdlrm
start-stop-daemon359440755editdlrm
sulogin471840755editdlrm
swaplabel144080755editdlrm
swapoff185040755editdlrm
swapon471840755editdlrm
switch_root144080755editdlrm
sysctl226000755editdlrm
tc4646800755editdlrm
telinit11198560755editdlrm
tipc552880755editdlrm
tune2fs1047040755editdlrm
udevadm11318560755editdlrm
unix_chkpwd348162755editdlrm
unix_update348160755editdlrm
wipefs389920755editdlrm
wpa_action17350755editdlrm
wpa_cli1390000755editdlrm
wpa_supplicant22651040755editdlrm
xtables-multi949680755editdlrm
zramctl923520755editdlrm
Edit: /snap/core18/2999/sbin/wpa_action (1735B)
#!/bin/sh # Copyright (C) 2006 - 2009 Debian/Ubuntu wpasupplicant Maintainers # # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # On Debian GNU/Linux systems, the text of the GPL license, # version 2, can be found in /usr/share/common-licenses/GPL-2. if [ -n "$IF_WPA_ROAM_MAINT_DEBUG" ]; then set -x fi if [ -z "$1" ] || [ -z "$2" ]; then echo "Usage: $0 IFACE ACTION" exit 1 fi # network interface WPA_IFACE="$1" # [CONNECTED|DISCONNECTED|stop|reload|check] WPA_ACTION="$2" if [ -f /etc/wpa_supplicant/functions.sh ]; then . /etc/wpa_supplicant/functions.sh else exit 0 fi case "$WPA_ACTION" in "CONNECTED") wpa_log_env wpa_hysteresis_check || exit 1 wpa_hysteresis_event if ifup; then wpa_cli status | wpa_msg log else wpa_cli status | wpa_msg log wpa_cli reassociate fi ;; "DISCONNECTED") wpa_log_env wpa_hysteresis_check || exit 1 ifdown if_post_down_up ;; "stop"|"down") test_wpa_cli && kill_wpa_cli ifdown test_wpa_supplicant && kill_wpa_supplicant ;; "restart"|"reload") test_wpa_supplicant || exit 1 reload_wpa_supplicant ;; "check") test_wpa_supplicant || exit 1 test_wpa_cli || exit 1 ;; *) echo "Unknown action: \"$WPA_ACTION\"" exit 1 ;; esac exit 0