Update init_cmd.py

This commit is contained in:
Mr Chen 2024-12-05 06:11:03 +08:00
parent e3606a1ca4
commit 7fbe40e73f
1 changed files with 7 additions and 4 deletions

View File

@ -39,16 +39,19 @@ def init_cmd():
# initd
if os.path.exists('/etc/rc.d/init.d'):
initd_bin = '/etc/rc.d/init.d/mw'
mw.writeFile(initd_bin, cmd_content)
mw.execShell('chmod +x ' + initd_bin)
if not os.path.exists(initd_bin):
mw.writeFile(initd_bin, cmd_content)
mw.execShell('chmod +x ' + initd_bin)
# 加入自启动
mw.execShell('which chkconfig && chkconfig --add mw')
if os.path.exists('/etc/init.d'):
initd_bin = '/etc/init.d/mw'
mw.writeFile(initd_bin, cmd_content)
mw.execShell('chmod +x ' + initd_bin)
if not os.path.exists(initd_bin):
mw.writeFile(initd_bin, cmd_content)
mw.execShell('chmod +x ' + initd_bin)
# 加入自启动
mw.execShell('which update-rc.d && update-rc.d -f mw defaults')