diff options
| author | Robin H. Johnson <robbat2@gentoo.org> | 2012-11-06 23:18:08 +0000 | 
|---|---|---|
| committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-11-06 23:18:08 +0000 | 
| commit | ed3b0c66f9e90b8fafb7996b7700fd34db7ddc11 (patch) | |
| tree | 204adab207fdbd37ad2035c77561286f86a261a3 /net | |
| parent | 91e28ab775e2bcfb343ba2e2c8b7db0289e11f70 (diff) | |
| download | openrc-ed3b0c66f9e90b8fafb7996b7700fd34db7ddc11.tar.xz | |
net/bonding: checkbashisms.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'net')
| -rw-r--r-- | net/bonding.sh | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bonding.sh b/net/bonding.sh index 044ce21c..c3e532a2 100644 --- a/net/bonding.sh +++ b/net/bonding.sh @@ -136,7 +136,7 @@ bonding_pre_start()  	else  		# warn if root on nfs and no subsume interface supplied  		local root_fs_type=$(mountinfo -s /) -		if [ "${root_fs_type}" == "nfs" ]; then +		if [ "${root_fs_type}" = "nfs" ]; then  			warn_nfs=1  			ewarn "NFS root detected!!!"  			ewarn " If your system crashes here, /etc/conf.d/net needs"  | 
