packages/net/ntpd/files/ntpd.init
florian f6791a95a1 Add ntpd (#1065)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@5908 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-12-27 19:21:05 +00:00

14 lines
212 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=60
start() {
# ln -sf /dev/ttyS0 /dev/gps0
# /usr/sbin/setgarmin -d /dev/gps -c /etc/setgarmin.conf
/usr/sbin/ntpd -g
}
stop() {
killall ntpd
}