First commit

This commit is contained in:
Steffen Lange 2018-04-08 21:34:42 +02:00
commit 0a28bac78a
37 changed files with 1963 additions and 0 deletions

30
gclogd Executable file
View file

@ -0,0 +1,30 @@
#!/bin/sh
# chkconfig: 235 80 20
### BEGIN INIT INFO
# Provides: gclogd
# Required-Start: $network $remote_fs
# Required-Stop: $network $remote_fs
# Default-Start: 2 3 5
# Default-Stop: 0 1 6
# Short-Description: Geiger Counter Logger
### END INIT INFO
case "$1" in
start)
/usr/bin/gclog -c /etc/gclog.conf
;;
stop)
/usr/bin/killall gclog
;;
force-reload|restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart|force-reload}" >&2
exit 3
;;
esac
exit 0