代码拉取完成,页面将自动刷新
同步操作将从 兰德网络O2OA平台软件/O2OA 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
current_dir="$(
cd "$(dirname "$0")"
pwd
)"
if [ -z "$1" ]; then
echo "usage: ./service_linux.sh name [start.sh default is start_linux.sh]"
exit
fi
name="$1"
scriptName="start_linux.sh"
if [ -z "$2" ]; then
echo "use ${current_dir}/${scriptName} as start script."
else
scriptName="$2"
fi
if [ ! -f ${current_dir}/${scriptName} ]; then
echo "start script ${current_dir}/${scriptName} not exist."
exit
fi
servicePath="/etc/systemd/system/${name}.service"
echo "[Unit]" >${servicePath}
echo "Description=o2server name:${name}" >>${servicePath}
echo "Wants=network-online.target" >>${servicePath}
echo "After=network.target" >>${servicePath}
echo "[Service]" >>${servicePath}
echo "Type=simple" >>${servicePath}
echo "StandardOutput=null" >>${servicePath}
echo "StandardError=null" >>${servicePath}
echo "ExecStart=${current_dir}/${scriptName}" >>${servicePath}
echo "ExecReload=${current_dir}/restart_linux.sh" >>${servicePath}
echo "ExecStop=${current_dir}/stop_linux.sh" >>${servicePath}
echo "[Install]" >>${servicePath}
echo "WantedBy=multi-user.target" >>${servicePath}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。