aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/init.d
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2009-12-19 16:13:21 +0200
committerBill Nottingham <notting@redhat.com>2010-01-07 17:46:14 -0500
commit655de403ad25a5332b25174009107884f9b30420 (patch)
treecdb4c75af4d48c5fbd181bd8a10d1d1bb4070606 /rc.d/init.d
parentd50d6fae1bfc47e65001aeb36daa2ac96f44e421 (diff)
downloadinitscripts-655de403ad25a5332b25174009107884f9b30420.tar
initscripts-655de403ad25a5332b25174009107884f9b30420.tar.gz
initscripts-655de403ad25a5332b25174009107884f9b30420.tar.bz2
initscripts-655de403ad25a5332b25174009107884f9b30420.tar.xz
initscripts-655de403ad25a5332b25174009107884f9b30420.zip
Simplify various string match constructs.
Diffstat (limited to 'rc.d/init.d')
-rwxr-xr-xrc.d/init.d/halt2
-rw-r--r--rc.d/init.d/netconsole2
-rwxr-xr-xrc.d/init.d/network2
3 files changed, 3 insertions, 3 deletions
diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt
index 7144d3da..8cb437fc 100755
--- a/rc.d/init.d/halt
+++ b/rc.d/init.d/halt
@@ -116,7 +116,7 @@ tmpfs=$(awk '$2 ~ /^\/($|proc|dev)/ { next; }
if [ -n "$SWAPS" ]; then
action $"Turning off swap: " swapoff $SWAPS
for dst in $SWAPS; do
- if [[ "$dst" =~ ^/dev/mapper ]] \
+ if [[ "$dst" == /dev/mapper* ]] \
&& [ "$(dmsetup status "$dst" | cut -d ' ' -f 3)" = crypt ]; then
backdev=$(/sbin/cryptsetup status "$dst" \
| awk '$1 == "device:" { print $2 }')
diff --git a/rc.d/init.d/netconsole b/rc.d/init.d/netconsole
index 17296f8e..7f91a6c6 100644
--- a/rc.d/init.d/netconsole
+++ b/rc.d/init.d/netconsole
@@ -47,7 +47,7 @@ print_address_info ()
[ -z "$DEV" ] && DEV=$(echo $route | sed "s|.* dev \([^ ]*\).*|\1|")
echo "DEV=$DEV"
echo "LOCALADDR=$(echo $route | sed "s|.* src \([^ ]*\).*|\1|")"
- if echo $route | grep -q " via " ; then
+ if [[ $route == *" via "* ]] ; then
via=$(echo $route | sed "s|.* via \([^ ]*\).*|\1|")
target=$via
else
diff --git a/rc.d/init.d/network b/rc.d/init.d/network
index 40802432..d8d39089 100755
--- a/rc.d/init.d/network
+++ b/rc.d/init.d/network
@@ -183,7 +183,7 @@ case "$1" in
rootfs=$(awk '{ if ($1 !~ /^[ \t]*#/ && $2 == "/" && $3 != "rootfs") { print $3; }}' /proc/mounts)
rootopts=$(awk '{ if ($1 !~ /^[ \t]*#/ && $2 == "/") { print $4; }}' /etc/mtab)
- if [[ "$rootfs" =~ ^nfs ]] || [[ "$rootopts" =~ "_netdev|_rnetdev" ]] ; then
+ if [[ "$rootfs" == nfs* || "$rootopts" =~ "_r?netdev" ]] ; then
exit 1
fi