From c54ab62d189a88e677aa0520df07da87363a8a61 Mon Sep 17 00:00:00 2001 From: "David Kaspar [Dee'Kej]" Date: Mon, 24 Jul 2017 14:33:58 +0200 Subject: init.d/functions: is_true() & is_false() extended by ON/OFF support In some cases we are using "on" or "off" as values. is_true() and is_false() can be used for evaluation of these values as well. --- rc.d/init.d/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index d54361c3..fd685682 100644 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -644,7 +644,7 @@ convert2sec() { # Evaluate shvar-style booleans is_true() { case "$1" in - [tT] | [yY] | [yY][eE][sS] | [tT][rR][uU][eE] | 1) + [tT] | [yY] | [yY][eE][sS] | [oO][nN] | [tT][rR][uU][eE] | 1) return 0 ;; esac @@ -654,7 +654,7 @@ is_true() { # Evaluate shvar-style booleans is_false() { case "$1" in - [fF] | [nN] | [nN][oO] | [fF][aA][lL][sS][eE] | 0) + [fF] | [nN] | [nN][oO] | [oO][fF][fF] | [fF][aA][lL][sS][eE] | 0) return 0 ;; esac -- cgit v1.2.1