shell脚本安装ntp server 服务

Posted Oops!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本安装ntp server 服务相关的知识,希望对你有一定的参考价值。

##############################Deploy ntp server ########################
echo "start deploy ntp server"
 
yum install -y ntp
 
if [ ! -f /var/log/ntpd.log  ];then
      touch /var/log/ntpd.log
fi
 
chown ntp:ntp /var/log/ntpd.log
 
cat $basepath/package/ntp.conf > /etc/ntp.conf
 
systemctl restart ntpd
systemctl enable ntpd
 
ntppid=`ps aux|grep ntp|grep -v "grep"|awk {print $2}`
 
if [ "$ntppid" ];then
      echo "success ! ntp-server is running now"
fi
 

 

以上是关于shell脚本安装ntp server 服务的主要内容,如果未能解决你的问题,请参考以下文章

centos 7 安装NTP服务

shell编程

linux系统初始化--​配置ntp自动更新时间

4时间同步的ntp服务安装与配置。

Debian 安装设置 NTP server

shell脚本之一键部署PXE远程安装服务,将解放双手进行到底!