solaris.xtra.s99ntpd

来自「ntp-4.1.2.tar.gz Linux/Unix编程」· S99NTPD 代码 · 共 22 行

S99NTPD
22
字号
#!/bin/shif [ $1 = "start" ]; then        if [ -x /usr/local/bin/xntpd ]; then                echo "Starting NTP daemon, takes about 1 minute... "		# dosynctodr may need to be left alone as of with Solaris 2.6		# The following line is unnecessary if you turn off 		# dosynctodr in /etc/system.                /usr/local/bin/tickadj -s                  /usr/local/bin/ntpdate -v server1 server2                sleep 5                /usr/local/bin/xntpd        fielse        if [ $1 = "stop" ]; then                pid=`/usr/bin/ps -e | /usr/bin/grep xntpd | /usr/bin/sed -e 's/^  *//' -e 's/ .*//'`                   if [ "${pid}" != "" ]; then                        echo "Stopping Network Time Protocol daemon "                        /usr/bin/kill ${pid}                fi             fifi

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?