blob: 27f8f607fa3f7795d24e40afde8b9a5713ae6d83 [file] [log] [blame]
#!/bin/sh
case "$1" in
start)
echo "SOFTWARE_VERSION=$(cat /etc/version)" | logos system
upload-logs-loop 2>&1 | logos upload-crash-log &
;;
stop)
# Should really just kill upload-logs-loop, but pkill can only recognize
# the first several letters of an exe name. So let's use the name prefix
# instead and kill both upload-logs and upload-logs-loop.
pkillwait upload-logs
pkillwait log-delay
;;
restart|reload)
$0 stop; $0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac