05c317e9577e35d6ee8e9d95ae1ee92e5ad22b9d
[packages.git] / net / ntpd / files / ntpd.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006-2011 OpenWrt.org
3
4 START=65
5 STOP=65
6
7 USE_PROCD=1
8
9 start_service() {
10 #       ln -sf /dev/ttyS0 /dev/gps0
11 #       /usr/sbin/setgarmin -d /dev/gps -c /etc/setgarmin.conf
12         user_exists ntp 123 || user_add ntp 123 123 ntp /var/lib/ntp
13         group_exists ntp 123 || group_add ntp 123
14         mkdir -p /var/lib/ntp
15         chown -R ntp:ntp /var/lib/ntp
16
17         procd_open_instance
18         procd_set_param command /sbin/ntpd -g -u ntp:ntp -p /var/run/ntpd.pid -n
19         procd_close_instance
20 }