Update index.py
This commit is contained in:
parent
4353ca3871
commit
1797ee393f
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue