Update index.py

This commit is contained in:
Mr Chen 2019-01-07 13:48:54 +08:00
parent 4353ca3871
commit 1797ee393f
1 changed files with 7 additions and 3 deletions

View File

@ -52,11 +52,16 @@ def getArgs():
return tmp
def getInitdConf():
def getInitdConfTpl():
path = getPluginDir() + "/init.d/gogs.tpl"
return path
def getInitdConf():
path = getServerDir() + "/init.d/gogs"
return path
def getConf():
path = getServerDir() + "/custom/conf/app.ini"
return path
@ -72,7 +77,7 @@ def status():
def initDreplace():
file_tpl = getInitdConf()
file_tpl = getInitdConfTpl()
service_path = public.getServerDir()
initD_path = getServerDir() + '/init.d'
@ -82,7 +87,6 @@ def initDreplace():
content = public.readFile(file_tpl)
content = content.replace('{$SERVER_PATH}', service_path)
public.writeFile(file_bin, content)
public.execShell('chmod +x ' + file_bin)