From 544584ea4a32ca890d8975c830780a042e701cd0 Mon Sep 17 00:00:00 2001 From: DavidZagury <32644413+DavidZagury@users.noreply.github.com> Date: Tue, 3 Sep 2024 11:41:18 +0300 Subject: [PATCH] Add back the option f to the reboot script (#3492) - What I did Add back the support to call reboot -f The support for this option was accidentally removed as part of this PR #3203 The same PR for 202311 doesn't have this mistake - #3204 - How I did it - How to verify it Call reboot -f --- scripts/reboot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/reboot b/scripts/reboot index 3b4717a17c..044334af3e 100755 --- a/scripts/reboot +++ b/scripts/reboot @@ -178,7 +178,7 @@ function check_conflict_boot_in_fw_update() function parse_options() { - while getopts "h?v" opt; do + while getopts "h?vf" opt; do case ${opt} in h|\? ) show_help_and_exit