diff options
Diffstat (limited to 'sh')
| -rw-r--r-- | sh/init-early.sh.Linux.in | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/sh/init-early.sh.Linux.in b/sh/init-early.sh.Linux.in index b7082a02..f304e924 100644 --- a/sh/init-early.sh.Linux.in +++ b/sh/init-early.sh.Linux.in @@ -20,7 +20,7 @@ service_present()  	# succeed if $RC_SYS empty, can't check further, assume script will run  	[ -z "$RC_SYS" ] && return 0  	# fail if file contains "-$RC_SYS", because then it won't run -	egrep -qi "^[[:space:]]*keyword[[:space:]].*-$RC_SYS\>" "$p" && return 1 +	grep -Eqi "^[[:space:]]*keyword[[:space:]].*-$RC_SYS([[:space:]]|$)" "$p" && return 1  	# succeed otherwise  	return 0  } | 
