summaryrefslogtreecommitdiffstats
path: root/target/device/valka/target_skeleton/etc/rc.d/ntpd
diff options
context:
space:
mode:
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"