From 6aa6ed8ad8738ff626989c44d74e34576e7f51e5 Mon Sep 17 00:00:00 2001 From: Patrick J Volkerding Date: Sat, 10 Aug 2019 04:55:27 +0000 Subject: Sat Aug 10 04:55:27 UTC 2019 a/kernel-generic-4.19.66-x86_64-1.txz: Upgraded. a/kernel-huge-4.19.66-x86_64-1.txz: Upgraded. a/kernel-modules-4.19.66-x86_64-1.txz: Upgraded. ap/amp-0.7.6-x86_64-3.txz: Rebuilt. Patched to clean up the code for a modern compiler and to not use overly aggressive optimizations that can lead to crashes. Thanks to Labinnah. d/doxygen-1.8.16-x86_64-1.txz: Upgraded. d/kernel-headers-4.19.66-x86-1.txz: Upgraded. d/scons-3.1.1-x86_64-1.txz: Upgraded. k/kernel-source-4.19.66-noarch-1.txz: Upgraded. n/NetworkManager-1.20.0-x86_64-1.txz: Upgraded. n/wpa_supplicant-2.9-x86_64-1.txz: Upgraded. x/libinput-1.14.0-x86_64-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt. --- testing/source/NetworkManager/rc.networkmanager | 113 ------------------------ 1 file changed, 113 deletions(-) delete mode 100644 testing/source/NetworkManager/rc.networkmanager (limited to 'testing/source/NetworkManager/rc.networkmanager') diff --git a/testing/source/NetworkManager/rc.networkmanager b/testing/source/NetworkManager/rc.networkmanager deleted file mode 100644 index b6b311ed1..000000000 --- a/testing/source/NetworkManager/rc.networkmanager +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh -# -# NetworkManager: NetworkManager daemon -# -# description: This is a daemon for automatically switching network \ -# connections to the best available connection. \ -# -# processname: NetworkManager -# pidfile: /var/run/NetworkManager/NetworkManager.pid -# - -prefix=/usr -exec_prefix=/usr -sbindir=${exec_prefix}/sbin - -NETWORKMANAGER_BIN=${sbindir}/NetworkManager - -# Sanity checks. -[ -x $NETWORKMANAGER_BIN ] || exit 0 - -PIDFILE=/var/run/NetworkManager/NetworkManager.pid - -nm_start() -{ - if [ "`pgrep dbus-daemon`" = "" ]; then - echo "D-BUS must be running to start NetworkManager" - return - fi - - # Just in case the pidfile is still there, we may need to nuke it. - if [ -e "$PIDFILE" ]; then - rm -f $PIDFILE - fi - - echo "Starting NetworkManager daemon: $NETWORKMANAGER_BIN" - XDG_CACHE_HOME=/root/.cache $NETWORKMANAGER_BIN -} - -nm_status() -{ - local pidlist=`cat $PIDFILE 2>/dev/null` - if [ -z "$pidlist" ]; then - return 1 - fi - local command=`ps -p $pidlist -o comm=` - if [ "$command" != 'NetworkManager' ]; then - return 1 - fi -} - -nm_stop() -{ - echo -en "Stopping NetworkManager: " - # Shut down any DHCP connections, otherwise the processes will be orphaned - # and the connections will not come up when NetworkManager restarts. - if ps ax | grep /sbin/dhcpcd | grep -q libexec/nm-dhcp ; then - ps ax | grep /sbin/dhcpcd | grep libexec/nm-dhcp | while read line ; do - kill -HUP $(echo $line | cut -b 1-5) - done - fi - if ps ax | grep /sbin/dhclient | grep -q /var/lib/NetworkManager ; then - ps ax | grep /sbin/dhclient | grep /var/lib/NetworkManager | while read line ; do - kill -HUP $(echo $line | cut -b 1-5) - done - fi - local pidlist=`cat $PIDFILE 2>/dev/null` - if [ ! -z "$pidlist" ]; then - kill $pidlist &>/dev/null - sleep 3 - rm -f $PIDFILE &>/dev/null - fi - # If wpa_supplicant is running here, it needs to be shut down as well. - # Since you're asking for NetworkManager to shut down, we have to assume - # that wpa_supplicant was started by it. - if [ -r /var/run/wpa_supplicant.pid ]; then - kill $(cat /var/run/wpa_supplicant.pid) - elif [ -r /run/wpa_supplicant.pid ]; then - kill $(cat /run/wpa_supplicant.pid) - fi - echo "stopped"; - sleep 3 -} - -nm_restart() -{ - nm_stop - nm_start -} - -case "$1" in -'start') - if ( ! nm_status ); then - nm_start - else - echo "NetworkManager is already running (will not start it twice)." - fi - ;; -'stop') - nm_stop - ;; -'restart') - nm_restart - ;; -'status') - if ( nm_status ); then - echo "NetworkManager is currently running" - else - echo "NetworkManager is not running." - fi - ;; -*) - echo "usage $0 start|stop|status|restart" -esac -- cgit v1.2.3