mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
API bugfix
This commit is contained in:
parent
fe3936e42b
commit
b204410f7f
1 changed files with 2 additions and 2 deletions
|
@ -118,12 +118,12 @@ def http_exec(request, **kwargs):
|
||||||
try:
|
try:
|
||||||
with open('/var/run/yunohost.pid', 'r'):
|
with open('/var/run/yunohost.pid', 'r'):
|
||||||
raise YunoHostError(1, _("A YunoHost command is already running"))
|
raise YunoHostError(1, _("A YunoHost command is already running"))
|
||||||
exceOError:
|
except IOError:
|
||||||
with open('/var/run/yunohost.pid', 'w') as f:
|
with open('/var/run/yunohost.pid', 'w') as f:
|
||||||
f.write('ldap')
|
f.write('ldap')
|
||||||
os.system('chmod 400 /var/run/yunohost.pid')
|
os.system('chmod 400 /var/run/yunohost.pid')
|
||||||
with open('/etc/yunohost/passwd', 'w') as f:
|
with open('/etc/yunohost/passwd', 'w') as f:
|
||||||
f.write(admin_password)
|
f.write(request.getPassword())
|
||||||
os.system('chmod 400 /etc/yunohost/passwd')
|
os.system('chmod 400 /etc/yunohost/passwd')
|
||||||
try:
|
try:
|
||||||
result = func(**validated_args)
|
result = func(**validated_args)
|
||||||
|
|
Loading…
Add table
Reference in a new issue