How to autostart telldusd daemon Arch Linux ARM?
Posted: Fri Mar 17, 2023 9:45 am
Have not figured this out yet. Tried to add it to daemons array in rc.conf but after reboot it aint running?
A little text to describe your forum
https://forum.telldus.com/
Code: Select all
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
DAEMON=telldusd
ARGS=
[ -r /etc/conf.d/$DAEMON ] && . /etc/conf.d/$DAEMON
PID=$(get_pid $DAEMON)
case "$1" in
start)
stat_busy "Starting $DAEMON"
[ -z "$PID" ] && $DAEMON $ARGS &>/dev/null
if [ $? = 0 ]; then
add_daemon $DAEMON
stat_done
else
stat_fail
exit 1
fi
;;
stop)
stat_busy "Stopping $DAEMON"
[ -n "$PID" ] && kill $PID &>/dev/null
if [ $? = 0 ]; then
rm_daemon $DAEMON
stat_done
else
stat_fail
exit 1
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
esac