diff options
Diffstat (limited to 'network-scripts/network-functions')
-rw-r--r-- | network-scripts/network-functions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/network-scripts/network-functions b/network-scripts/network-functions index 614ad490..5c6c3265 100644 --- a/network-scripts/network-functions +++ b/network-scripts/network-functions @@ -270,9 +270,9 @@ expand_config () toggle_value () { - if [ "$2" = "yes" -o "$2" = "YES" ] ; then + if is_true "$2"; then echo "$1 on" - elif [ "$2" = "no" -o "$2" = "NO" ] ; then + elif is_false "$2"; then echo "$1 off" else echo '' |