mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Correct installation error
This commit is contained in:
parent
67cf68343b
commit
6b7213f511
2 changed files with 2 additions and 2 deletions
|
@ -149,7 +149,7 @@ def app_install(app, domain=None, path=None, label=None, public=False, protected
|
||||||
try:
|
try:
|
||||||
domain_list(filter="virtualdomain="+ domain)
|
domain_list(filter="virtualdomain="+ domain)
|
||||||
except YunoHostError:
|
except YunoHostError:
|
||||||
domain_add(domain=[domain])
|
domain_add([domain])
|
||||||
|
|
||||||
|
|
||||||
# TODO: Install dependencies
|
# TODO: Install dependencies
|
||||||
|
|
|
@ -30,7 +30,7 @@ def tools_ldapinit(domain):
|
||||||
for rdn, attr_dict in ldap_map['childs'].items():
|
for rdn, attr_dict in ldap_map['childs'].items():
|
||||||
yldap.add(rdn, attr_dict)
|
yldap.add(rdn, attr_dict)
|
||||||
|
|
||||||
domain_add(domain=[domain])
|
domain_add([domain])
|
||||||
|
|
||||||
admin_dict = {
|
admin_dict = {
|
||||||
'cn': 'admin',
|
'cn': 'admin',
|
||||||
|
|
Loading…
Reference in a new issue