Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-7]: src/etc/powerd/scripts Pull up following revision(s) (request...
details: https://anonhg.NetBSD.org/src/rev/85f5ca12f4f7
branches: netbsd-7
changeset: 800527:85f5ca12f4f7
user: martin <martin%NetBSD.org@localhost>
date: Sat Aug 25 14:54:18 2018 +0000
description:
Pull up following revision(s) (requested by roy in ticket #1631):
etc/powerd/scripts/sleep_button: revision 1.11
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.
diffstat:
etc/powerd/scripts/sleep_button | 16 +---------------
1 files changed, 1 insertions(+), 15 deletions(-)
diffs (39 lines):
diff -r aa16dc77ad52 -r 85f5ca12f4f7 etc/powerd/scripts/sleep_button
--- a/etc/powerd/scripts/sleep_button Tue Aug 14 14:35:23 2018 +0000
+++ b/etc/powerd/scripts/sleep_button Sat Aug 25 14:54:18 2018 +0000
@@ -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.10.22.1 2018/08/25 14:54:18 martin 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 @@
# ... 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)
Home |
Main Index |
Thread Index |
Old Index