代码拉取完成,页面将自动刷新
#!/bin/bash
service='[Unit]
Description=NewFuture ddns
After=network.target
[Service]
Type=simple
WorkingDirectory=/usr/share/DDNS
ExecStart=/usr/bin/env python /usr/share/DDNS/run.py -c /etc/DDNS/config.json
[Install]
WantedBy=multi-user.target'
timer='[Unit]
Description=NewFuture ddns timer
[Timer]
OnUnitActiveSec=5m
Unit=ddns.service
[Install]
WantedBy=multi-user.target'
if [[ "install" == $1 ]]; then
echo "$service" > /usr/lib/systemd/system/ddns.service
echo "$timer" > /usr/lib/systemd/system/ddns.timer
cp -r `pwd` /usr/share/
mkdir -p /etc/DDNS
if [ ! -f "/etc/DDNS/config.json" ];then
if [ -f "config.json" ];then
cp config.json /etc/DDNS/config.json
fi
fi
systemctl enable ddns.timer
systemctl start ddns.timer
echo "installed"
echo "useful commands:"
echo " systemctl status ddns view service status."
echo " journalctl -u ddns.timer view the logs."
echo "config file: /etc/DDNS/config.json"
elif [[ "uninstall" == $1 ]]; then
systemctl disable ddns.timer
rm /usr/lib/systemd/system/ddns.service
rm /usr/lib/systemd/system/ddns.timer
rm -rf /etc/DDNS
rm -rf /usr/share/DDNS
systemctl daemon-reload
echo "uninstalled"
else
echo "Tips:"
echo " $0 install install the ddns systemd service."
echo " $0 uninstall uninstall the ddns service."
fi
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。