diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-12-13 09:25:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-13 09:25:37 +0100 |
commit | d814020778b8310faa3cd57ccfbc718bfb2fe215 (patch) | |
tree | f27684afe97b6a1edb90484e1c014e996c8edd41 /src/op_mode/show_dhcp.py | |
parent | 9dc0d74098f98d2917a85959acd4915fe7a4ffe1 (diff) | |
parent | 8a28567736dfaffd4b827f1b8b769814474d73ba (diff) | |
download | vyos-1x-d814020778b8310faa3cd57ccfbc718bfb2fe215.tar.gz vyos-1x-d814020778b8310faa3cd57ccfbc718bfb2fe215.zip |
Merge pull request #182 from jjakob/equuleus
Diffstat (limited to 'src/op_mode/show_dhcp.py')
-rwxr-xr-x | src/op_mode/show_dhcp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/op_mode/show_dhcp.py b/src/op_mode/show_dhcp.py index c2a05f516..f801ba753 100755 --- a/src/op_mode/show_dhcp.py +++ b/src/op_mode/show_dhcp.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2018 VyOS maintainers and contributors +# Copyright (C) 2018-2019 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -190,7 +190,7 @@ if __name__ == '__main__': sys.exit(0) # if dhcp server is down, inactive leases may still be shown as active, so warn the user. - if os.system('systemctl -q is-active isc-dhcp-server.service') != 0: + if os.system('systemctl -q is-active isc-dhcpv4-server.service') != 0: print("WARNING: DHCP server is configured but not started. Data may be stale.") if args.leases: |