[*] First commit

This commit is contained in:
2022-11-13 11:46:30 +01:00
parent 6b057d3b3d
commit a1f085aed4
25 changed files with 2894 additions and 0 deletions

26
daemon/hwclock Executable file
View File

@ -0,0 +1,26 @@
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
case $HARDWARECLOCK in
UTC) HWCLOCK_PARAMS="--utc";;
localtime) HWCLOCK_PARAMS="--localtime";;
*) HWCLOCK_PARAMS="";;
esac
case "$1" in
start)
add_daemon hwclock;;
stop)
hwclock --adjust $HWCLOCK_PARAMS
rm_daemon hwclock
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac