diff options
Diffstat (limited to 'busybox/files')
-rw-r--r-- | busybox/files/busybox-cron | 39 | ||||
-rw-r--r-- | busybox/files/busybox-httpd | 48 | ||||
-rw-r--r-- | busybox/files/busybox-udhcpd (renamed from busybox/files/udhcp-server) | 0 |
3 files changed, 87 insertions, 0 deletions
diff --git a/busybox/files/busybox-cron b/busybox/files/busybox-cron index e69de29bb2..f0e6b15629 100644 --- a/busybox/files/busybox-cron +++ b/busybox/files/busybox-cron @@ -0,0 +1,39 @@ +#!/bin/sh +DAEMON=/usr/sbin/crond +NAME=crond +DESC="Busybox Periodic Command Scheduler" +ARGS="-c /etc/cron/crontabs" + +test -f $DAEMON || exit 0 + +set -e + +case "$1" in + start) + echo -n "starting $DESC: $NAME... " + start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS + echo "done." + ;; + stop) + echo -n "stopping $DESC: $NAME... " + start-stop-daemon -K -n $NAME + echo "done." + ;; + restart) + echo -n "restarting $DESC: $NAME... " + $0 stop + $0 start + echo "done." + ;; + reload) + echo -n "reloading $DESC: $NAME... " + killall -HUP $(basename ${DAEMON}) + echo "done." + ;; + *) + echo "Usage: $0 {start|stop|restart|reload}" + exit 1 + ;; +esac + +exit 0 diff --git a/busybox/files/busybox-httpd b/busybox/files/busybox-httpd index e69de29bb2..6757b93724 100644 --- a/busybox/files/busybox-httpd +++ b/busybox/files/busybox-httpd @@ -0,0 +1,48 @@ +#!/bin/sh +DAEMON=/usr/sbin/httpd +NAME=httpd +DESC="Busybox HTTP Daemon" +HTTPROOT="/var/www" +ARGS="-h $HTTPROOT" + +test -f $DAEMON || exit 0 + +set -e + +case "$1" in + start) + echo -n "starting $DESC: $NAME... " + if [ ! -f /etc/httpd.conf ]; then + echo "/etc/httpd.conf is missing." + exit 1 + fi + if [ ! -d $HTTPROOT ]; then + echo "$HTTPROOT is missing." + exit 1 + fi + start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS + echo "done." + ;; + stop) + echo -n "stopping $DESC: $NAME... " + start-stop-daemon -K -n $NAME + echo "done." + ;; + restart) + echo "restarting $DESC: $NAME... " + $0 stop + $0 start + echo "done." + ;; + reload) + echo -n "reloading $DESC: $NAME... " + killall -HUP $(basename ${DAEMON}) + echo "done." + ;; + *) + echo "Usage: $0 {start|stop|restart|reload}" + exit 1 + ;; +esac + +exit 0 diff --git a/busybox/files/udhcp-server b/busybox/files/busybox-udhcpd index e69de29bb2..e69de29bb2 100644 --- a/busybox/files/udhcp-server +++ b/busybox/files/busybox-udhcpd |