#!/sbin/sh # # Copyright 2004 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # ident "@(#)sshd 1.4 04/11/17 SMI" PIDFILE=/var/run/chronyd.pid case $1 in 'start') /opt/AARDsw/sbin/chronyd ;; 'restart') if [ -f "$PIDFILE" ]; then /usr/bin/kill -HUP `/usr/bin/cat $PIDFILE` fi ;; *) echo "Usage: $0 { start | restart }" exit 1 ;; esac exit $?