Initial commit

This commit is contained in:
lw-everestlinux
2022-09-13 17:52:14 -04:00
commit 76ce8eab95
8 changed files with 328 additions and 0 deletions

25
clfs/rc.d/init.d/netplugd Executable file
View File

@@ -0,0 +1,25 @@
#!/bin/ash
# Netplugd Startup Script
. /etc/rc.d/init.d/functions
case "$1" in
start)
echo -n "Starting netplugd: "
netplugd
check_status
;;
stop)
echo -n "Stopping netplugd: "
killall netplugd
check_status
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac