packages/net/ntpd/files/ntpd.init

18 lines
319 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2008 OpenWrt.org
START=65
PIDFILE="/var/run/ntpd.pid"
start() {
# ln -sf /dev/ttyS0 /dev/gps0
# /usr/sbin/setgarmin -d /dev/gps -c /etc/setgarmin.conf
stop
/usr/sbin/ntpd -g -p $PIDFILE
}
stop() {
[ -f "$PIDFILE" ] && kill $(cat "$PIDFILE") 2>/dev/null >/dev/null
}