mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Fix improper use of checkyesno routine.
Noticed by: oliver MFC after: 1 week
This commit is contained in:
parent
cc63a90dc8
commit
432d4f0bce
1 changed files with 6 additions and 2 deletions
|
|
@ -171,10 +171,14 @@ stop_boot()
|
|||
{
|
||||
local always
|
||||
|
||||
if [ -n "$1" ] && checkyesno $1; then
|
||||
case $1 in
|
||||
# "yes", "true", "on", or "1"
|
||||
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
|
||||
always=true
|
||||
else
|
||||
;;
|
||||
*)
|
||||
always=false
|
||||
;;
|
||||
fi
|
||||
if [ "$autoboot" = yes -o "$always" = true ]; then
|
||||
echo "ERROR: ABORTING BOOT (sending SIGTERM to parent)!"
|
||||
|
|
|
|||
Loading…
Reference in a new issue