bundles/pppd: silence restart-pppoe-if-no-public-ip
This commit is contained in:
parent
e33af1c845
commit
ecb7a93073
1 changed files with 1 additions and 2 deletions
|
@ -16,7 +16,6 @@ except:
|
||||||
last_restart = 0
|
last_restart = 0
|
||||||
|
|
||||||
if now-3600 < last_restart:
|
if now-3600 < last_restart:
|
||||||
print('Last restart is less than an hour ago, exiting ...')
|
|
||||||
exit(0)
|
exit(0)
|
||||||
|
|
||||||
ifaces = set()
|
ifaces = set()
|
||||||
|
@ -41,6 +40,6 @@ if not system_has_public_ip:
|
||||||
run(['systemctl', 'restart', 'pppoe'])
|
run(['systemctl', 'restart', 'pppoe'])
|
||||||
|
|
||||||
with open('/var/tmp/pppd-last-restart.status', 'w') as f:
|
with open('/var/tmp/pppd-last-restart.status', 'w') as f:
|
||||||
f.write(now)
|
f.write(str(now))
|
||||||
|
|
||||||
print('pppoe.service has been restarted')
|
print('pppoe.service has been restarted')
|
||||||
|
|
Loading…
Reference in a new issue