#!/bin/sh /etc/rc.common START='25' STOP='75' start() { log 'Starting ntpd' start-stop-daemon -S -q -x /sbin/ntpd -- \ -p 0.pool.ntp.org \ -p 1.pool.ntp.org \ -p 2.pool.ntp.org \ -p 3.pool.ntp.org } stop() { log 'Stopping ntpd' start-stop-daemon -K -q -p /var/run/ntpd.pid }