diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-15 06:12:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-15 06:12:12 +0100 |
commit | f1fe8df14abef2add43d8422160322d31d7e286d (patch) | |
tree | 72d1eddd95be7e9880f5d04b89fae1e03c8509fd /src | |
parent | 06eabd239da20945b20900b6e91ee9be9b446c1d (diff) | |
parent | 61cea60cd81d7e3278102a78f8d9183d356cd335 (diff) | |
download | vyos-1x-f1fe8df14abef2add43d8422160322d31d7e286d.tar.gz vyos-1x-f1fe8df14abef2add43d8422160322d31d7e286d.zip |
Merge pull request #2822 from vyos/mergify/bp/sagitta/pr-2821
T5944: Fix reboot in arg (backport #2821)
Diffstat (limited to 'src')
-rwxr-xr-x | src/op_mode/powerctrl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op_mode/powerctrl.py b/src/op_mode/powerctrl.py index 3ac5991b4..1208fb7cd 100755 --- a/src/op_mode/powerctrl.py +++ b/src/op_mode/powerctrl.py @@ -191,7 +191,7 @@ def main(): nargs="*", metavar="HH:MM") - action.add_argument("--reboot_in", "-i", + action.add_argument("--reboot-in", "-i", help="Reboot the system", nargs="*", metavar="Minutes") |