mirror of
https://github.com/YunoHost/dynette.git
synced 2024-09-03 20:06:17 +02:00
[mod] exit is from sys
This commit is contained in:
parent
c291ed5a2b
commit
e2120ed8f0
1 changed files with 2 additions and 2 deletions
|
@ -145,13 +145,13 @@ with psycopg2.connect(postgresql_dsn) as postgresql_connection:
|
||||||
|
|
||||||
# Reload Bind
|
# Reload Bind
|
||||||
if os.system('/usr/sbin/rndc reload') == 0:
|
if os.system('/usr/sbin/rndc reload') == 0:
|
||||||
exit(0)
|
sys.exit(0)
|
||||||
else:
|
else:
|
||||||
os.system('cp '+ conf_file +' '+ conf_file +'.bad')
|
os.system('cp '+ conf_file +' '+ conf_file +'.bad')
|
||||||
os.system('cp '+ conf_file +'.back '+ conf_file)
|
os.system('cp '+ conf_file +'.back '+ conf_file)
|
||||||
os.system('/usr/sbin/rndc reload')
|
os.system('/usr/sbin/rndc reload')
|
||||||
print("An error occured ! Please check daemon.log and your conf.bad")
|
print("An error occured ! Please check daemon.log and your conf.bad")
|
||||||
exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
# flush bind9 cache (mostly because we got a hmac-sha512 key migration
|
# flush bind9 cache (mostly because we got a hmac-sha512 key migration
|
||||||
if need_bind9_cache_flush:
|
if need_bind9_cache_flush:
|
||||||
|
|
Loading…
Reference in a new issue