summaryrefslogtreecommitdiff
path: root/target/device/valka/target_skeleton/etc/rc.d/ntpd
diff options
context:
space:
mode:
authorJohn Voltz <john.voltz@gmail.com>2008-03-06 18:59:14 +0000
committerJohn Voltz <john.voltz@gmail.com>2008-03-06 18:59:14 +0000
commitceaf9e8217f29f6c499d03c62612b2eb50e8ed09 (patch)
treec0d1c53c52d050672de9c2fc656b760a2fbe5aa1 /target/device/valka/target_skeleton/etc/rc.d/ntpd
parentc46893b7af0e6f0bbc072dc76cb979995ff654fc (diff)
updates and additions for avr32 arch
Diffstat (limited to 'target/device/valka/target_skeleton/etc/rc.d/ntpd')
-rwxr-xr-xtarget/device/valka/target_skeleton/etc/rc.d/ntpd24
1 files changed, 24 insertions, 0 deletions
diff --git a/target/device/valka/target_skeleton/etc/rc.d/ntpd b/target/device/valka/target_skeleton/etc/rc.d/ntpd
new file mode 100755
index 000000000..291da6317
--- /dev/null
+++ b/target/device/valka/target_skeleton/etc/rc.d/ntpd
@@ -0,0 +1,24 @@
+#!/bin/ash
+. /etc/rc.subr
+
+start() {
+ if [ ! -x ${ntpd_program} ]; then
+ log_error "Missing 'ntpd' program (${ntpd_program})"
+ echo "Failed"
+ return 1
+ fi
+
+ echo -n " * Starting ntpd: "
+ if ${ntpd_program} -c ${ntpd_config} -p ${ntpd_pidfile} ${ntpd_flags}; then
+ echo "Ok"
+ else
+ echo "Failed"
+ fi
+}
+
+stop() {
+ echo " * Stopping ntpd..."
+ killpid ${ntpd_pidfile}
+}
+
+rc_run_command "$1" "ntpd"