hibot/script/hibot.m4

20 lines
407 B
Plaintext
Raw Normal View History

2023-12-17 06:49:56 -05:00
#!/sbin/openrc-run
command_args="irc.rizon.net:6665 #/g/test"
name="hibot"
command="syscmd(`printf $(pwd)')/${name}"
pidfile="/var/run/${name}.pid"
start() {
ebegin "Starting $name"
start-stop-daemon --start --background --make-pidfile --pidfile "$pidfile" --exec "$command" -- $command_args
eend $?
}
stop() {
ebegin "Stopping $name"
start-stop-daemon --stop --pidfile "$pidfile"
eend $?
}