summaryrefslogblamecommitdiffstats
path: root/modules/is.inc
blob: 17e8a0d54c77f38ef8cfa45edaf5eeecdf943045 (plain) (tree)
1
2
3
4
5
6





                                                                                                                                                                      
#!/bin/ash

is_on() {
	[ "$1" = "ON" ] || [ "$1" = "on" ] || [ "$1" = "YES" ] || [ "$1" = "yes" ] || [ "$1" = "true" ] || [ "$1" = "TRUE" ] || [ "$1" -ne 0 ] 2>/dev/null || return 1
	return 0
}