diff options
author | John Voltz <john.voltz@gmail.com> | 2008-03-06 18:59:14 +0000 |
---|---|---|
committer | John Voltz <john.voltz@gmail.com> | 2008-03-06 18:59:14 +0000 |
commit | ceaf9e8217f29f6c499d03c62612b2eb50e8ed09 (patch) | |
tree | c0d1c53c52d050672de9c2fc656b760a2fbe5aa1 /target/device/valka/target_skeleton/etc/rc.d/lighttpd | |
parent | c46893b7af0e6f0bbc072dc76cb979995ff654fc (diff) | |
download | buildroot-novena-ceaf9e8217f29f6c499d03c62612b2eb50e8ed09.tar.gz buildroot-novena-ceaf9e8217f29f6c499d03c62612b2eb50e8ed09.zip |
updates and additions for avr32 arch
Diffstat (limited to 'target/device/valka/target_skeleton/etc/rc.d/lighttpd')
-rwxr-xr-x | target/device/valka/target_skeleton/etc/rc.d/lighttpd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/target/device/valka/target_skeleton/etc/rc.d/lighttpd b/target/device/valka/target_skeleton/etc/rc.d/lighttpd new file mode 100755 index 000000000..97ff2f46a --- /dev/null +++ b/target/device/valka/target_skeleton/etc/rc.d/lighttpd @@ -0,0 +1,17 @@ +#!/bin/sh +. /etc/rc.subr + +start() { + echo -n " * Starting lighttpd: " + if ${lighttpd_program} ${lighttpd_flags}; then + echo "Ok" + else + echo "Failed" + fi +} +stop() { + echo " * Stopping lighttpd..." + killpid "${lighttpd_pidfile}" +} + +rc_run_command "$1" "lighttpd" |