#! /bin/bash case "$2" in up) /etc/init.d/ntp-client restart ;; down) /etc/init.d/ntp-client stop ;; *) exit 0 ;; esac