diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2022-07-06 15:32:42 +0000 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2022-07-07 16:28:59 +0000 |
commit | 28ba0ef32425ee458293a37a4a5ba664dfe577b2 (patch) | |
tree | 9e6847a82ca668e874a3ad3cd763370be1f8dab9 /src/op_mode/restart_dhcp_relay.py | |
parent | c548d1c7bac049c2a309bb3afac3694009a25b5f (diff) | |
download | vyos-1x-28ba0ef32425ee458293a37a4a5ba664dfe577b2.tar.gz vyos-1x-28ba0ef32425ee458293a37a4a5ba664dfe577b2.zip |
op-mode: T4503: Prevent restart service if commit in progress
Prevent op-mode scripts from restarting services if commit in
progress
Diffstat (limited to 'src/op_mode/restart_dhcp_relay.py')
-rwxr-xr-x | src/op_mode/restart_dhcp_relay.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/op_mode/restart_dhcp_relay.py b/src/op_mode/restart_dhcp_relay.py index af4fb2d15..db5a48970 100755 --- a/src/op_mode/restart_dhcp_relay.py +++ b/src/op_mode/restart_dhcp_relay.py @@ -24,6 +24,7 @@ import os import vyos.config from vyos.util import call +from vyos.util import commit_in_progress parser = argparse.ArgumentParser() @@ -39,6 +40,9 @@ if __name__ == '__main__': if not c.exists_effective('service dhcp-relay'): print("DHCP relay service not configured") else: + if commit_in_progress(): + print('Cannot restart DHCP relay while a commit is in progress') + exit(1) call('systemctl restart isc-dhcp-server.service') sys.exit(0) @@ -47,6 +51,9 @@ if __name__ == '__main__': if not c.exists_effective('service dhcpv6-relay'): print("DHCPv6 relay service not configured") else: + if commit_in_progress(): + print('Cannot restart DHCPv6 relay while commit is in progress') + exit(1) call('systemctl restart isc-dhcp-server6.service') sys.exit(0) |