diff options
author | B. Watson <urchlay@slackware.uk> | 2025-05-06 18:45:23 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-05-06 18:45:23 -0400 |
commit | d7950055f20905ec7c014eff2d21df31213f402f (patch) | |
tree | 86b489a21d0092349c6a890817f2b22581e19970 /rc.marsond | |
parent | 5da47051f0c1e03377f77cb2979610594d2629eb (diff) | |
download | marsond-d7950055f20905ec7c014eff2d21df31213f402f.tar.gz |
update README (no more rc script, using udev now).
Diffstat (limited to 'rc.marsond')
-rw-r--r-- | rc.marsond | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/rc.marsond b/rc.marsond deleted file mode 100644 index dfacf40..0000000 --- a/rc.marsond +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -# Start/stop/restart marsond, Slackware-style. - -# To start marsond at boot, make sure this script is executable: - -# chmod 755 /etc/rc.d/rc.marsond -# ...and then add this to /etc/rc.d/rc.local: - -# [ -x /etc/rc.d/rc.marsond ] && /etc/rc.d/rc.marsond - -# There's no need to add anything to rc.local_shutdown, as the -# daemon will always exit cleanly. - -# If you need to set the keyboard's input device name and/or the -# delay time for Enter key releases, uncomment and modify the -# next line: - -#MARSOND_OPTS="-d 30 -k /dev/input/by-id/your-device-name-goes-here" - -# By default, marsond drops privilege to nobody:nogroup after -# initialization. You can use a different user and group by -# uncommenting and modifying these: - -#export MARSON_USER=nobody -#export MARSON_GROUP=nogroup - -PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin -export PATH - -case "$1" in - start) /usr/sbin/marsond $MARSOND_OPTS ;; - stop) /sbin/killall marsond ;; - restart) "$0" stop ; sleep 2; "$0" start ;; - *) echo "usage $0 start|stop|restart" ;; -esac |