Remove the stopping and starting of various network scripts on

sleep / resume.
This should no longer be needed now the various applications
(dhcpcd, ntpd, wpa_supplicant et all) are more aware to the network state
as all interface carriers should be brought down and up again.

Fixes PR misc/52397.
This commit is contained in:
roy 2017-07-13 13:50:48 +00:00
parent ab32461818
commit 1541a8a5a7
1 changed files with 1 additions and 15 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $NetBSD: sleep_button,v 1.10 2011/10/17 23:27:41 jmcneill Exp $
# $NetBSD: sleep_button,v 1.11 2017/07/13 13:50:48 roy Exp $
#
# Generic script for sleep button events.
#
@ -10,13 +10,6 @@
case "${2}" in
pressed)
/etc/rc.d/bluetooth stop
/etc/rc.d/ntpd stop
/etc/rc.d/dhclient stop
/etc/rc.d/network stop
/etc/rc.d/wpa_supplicant stop
if /sbin/sysctl -q hw.acpi.sleep.state; then
/sbin/sysctl -w hw.acpi.sleep.state=3
elif /sbin/sysctl -q machdep.xen.suspend; then
@ -31,13 +24,6 @@ pressed)
# ... waking up
sleep 1
fi
/etc/rc.d/wpa_supplicant start
/etc/rc.d/network start
/etc/rc.d/dhclient start
/etc/rc.d/ntpdate start
/etc/rc.d/ntpd start
/etc/rc.d/bluetooth start
;;
released)