diff options
Diffstat (limited to 'templates/service/ntp/node.def')
-rw-r--r-- | templates/service/ntp/node.def | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/service/ntp/node.def b/templates/service/ntp/node.def new file mode 100644 index 00000000..c5d99724 --- /dev/null +++ b/templates/service/ntp/node.def @@ -0,0 +1,18 @@ +priority: 400 +help: Network Time Protocol (NTP) configuration + +end: + /opt/vyatta/sbin/vyatta_update_ntp.pl </etc/ntp.conf >/tmp/ntp.conf + sudo cp -b /tmp/ntp.conf /etc/ntp.conf + if grep -q '^server' /etc/ntp.conf + then + if /usr/sbin/invoke-rc.d ntp status >/dev/null + then + sudo /usr/sbin/invoke-rc.d ntp force-reload + else + sudo /usr/sbin/invoke-rc.d ntp start + fi + else + sudo /usr/sbin/invoke-rc.d ntp stop + fi + rm -f /tmp/ntp.conf |