Server : Apache System : Linux server1.cgrithy.com 3.10.0-1160.95.1.el7.x86_64 #1 SMP Mon Jul 24 13:59:37 UTC 2023 x86_64 User : nobody ( 99) PHP Version : 8.1.23 Disable Function : NONE Directory : /usr/share/doc/wpa_supplicant-2.6/examples/ |
#!/bin/sh # /etc/pm/sleep.d/60_wpa_supplicant # Action script to notify wpa_supplicant of pm-action events. PATH=/sbin:/usr/sbin:/bin:/usr/bin WPACLI=wpa_cli case "$1" in suspend|hibernate) $WPACLI suspend ;; resume|thaw) $WPACLI resume ;; esac exit 0