diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-05-09 22:48:41 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-05-09 22:48:41 +0000 |
commit | 6b00c90d709a01822027fb9986ec8ace605dd991 (patch) | |
tree | 247dda891d7c16580a7d274411581c519d01c2db /package/portmap/S13portmap | |
parent | 448153a06a443ad61f3df88408edf3a7da98ea0c (diff) | |
download | buildroot-novena-6b00c90d709a01822027fb9986ec8ace605dd991.tar.gz buildroot-novena-6b00c90d709a01822027fb9986ec8ace605dd991.zip |
Rename all INIT scripts to have the numerical prefixes to easily see the start-up order.
Diffstat (limited to 'package/portmap/S13portmap')
-rwxr-xr-x | package/portmap/S13portmap | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/package/portmap/S13portmap b/package/portmap/S13portmap new file mode 100755 index 000000000..573a16abf --- /dev/null +++ b/package/portmap/S13portmap @@ -0,0 +1,44 @@ +#! /bin/sh + +[ -f /sbin/portmap ] || exit 0 + +start() { + echo -n "Starting portmap: " + portmap + mkdir -p /var/lock/subsys + touch /var/lock/subsys/portmap + echo "done" +} + + +stop() { + echo -n "Stopping portmap: " + echo + killall portmap + rm -rf /var/lock/subsys + echo "done" +} + +restart() { + stop + start + rm -f /var/run/portmap.state +} + +# See how we were called. +case "$1" in + start) + start + ;; + stop) + stop + ;; + restart|reload) + restart + ;; + *) + echo "Usage: $0 {start|stop|reload|restart}" + exit 1 +esac + +exit $? |