aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Bilyk <jbilyk@gmail.com>2011-07-31 16:40:34 -0400
committerJeff Bilyk <jbilyk@gmail.com>2011-07-31 16:40:34 -0400
commit50a00f2f0f268425bebb5c1084b7ccf75e1ec519 (patch)
tree18753bea36baf35e9d7d7d9cc654f3b5931328f4
parent70b1a6716dc5e2ed4a4b92d908691f86924c3753 (diff)
downloadalpine-conf-50a00f2f0f268425bebb5c1084b7ccf75e1ec519.tar.bz2
alpine-conf-50a00f2f0f268425bebb5c1084b7ccf75e1ec519.tar.xz
setup-{apklbu, bootable, chrony, sshd}: replace double equals in if statements with single equals
-rwxr-xr-xsetup-apklbu.in10
-rw-r--r--setup-bootable.in4
-rwxr-xr-xsetup-chrony.in2
-rwxr-xr-xsetup-sshd.in4
4 files changed, 10 insertions, 10 deletions
diff --git a/setup-apklbu.in b/setup-apklbu.in
index 103511d..ff6d218 100755
--- a/setup-apklbu.in
+++ b/setup-apklbu.in
@@ -27,10 +27,10 @@ while getopts "im:h" opt; do
esac
done
-if [ "$VERBOSE" == "1" ]; then
+if [ "$VERBOSE" = "1" ]; then
echo "Setup apk caching and lbu? (y/N)"
default_read setupapklbu
- if [ "$setupapklbu" == "N" ] || [ "$setupapklbu" == "n" ]; then
+ if [ "$setupapklbu" = "N" ] || [ "$setupapklbu" = "n" ]; then
exit 0
fi
fi
@@ -49,11 +49,11 @@ fi
readwritestatus="`echo $mountstatus | awk -F '(' '{print $2}' | awk -F ',' '{print $1}'`"
-if [ "$readwritestatus" == "ro" ]; then
+if [ "$readwritestatus" = "ro" ]; then
rewrite=1
fi
-if [ "$rewrite" == 1 ]; then
+if [ "$rewrite" = 1 ]; then
mount -o remount,rw /media/${MOUNTPOINT} || die "Failed to remount media rw"
fi
@@ -75,6 +75,6 @@ LBU_MEDIA=$MOUNTPOINT
EOF
lbu package /media/"$MOUNTPOINT" || die "Failed to lbu apkovl on /media/${MOUNTPOINT}"
sync
-if [ "$rewrite" == 1 ]; then
+if [ "$rewrite" = 1 ]; then
mount -o remount,ro /media/${MOUNTPOINT} || die "Failed to remount media ro"
fi
diff --git a/setup-bootable.in b/setup-bootable.in
index 30410ad..c0766fb 100644
--- a/setup-bootable.in
+++ b/setup-bootable.in
@@ -117,7 +117,7 @@ elif [ -b "$dest" ]; then
fi
# Check for RO mounting
-if [ "`grep \"$destdir\" /proc/mount | grep 'ro,'`" == "ro" ]; then
+if [ "`grep \"$destdir\" /proc/mount | grep 'ro,'`" = "ro" ]; then
remountneeded="Y"
mount -o remount,rw "$destdir"
fi
@@ -261,7 +261,7 @@ else
echo "Warning: Could not find the parent device for $dest"
fi
-if [ "$remountneeded" == "Y" ]; then
+if [ "$remountneeded" = "Y" ]; then
mount -o remount,ro "$destdir"
fi
diff --git a/setup-chrony.in b/setup-chrony.in
index cb21ae4..a766528 100755
--- a/setup-chrony.in
+++ b/setup-chrony.in
@@ -27,7 +27,7 @@ done
if [ "$PROMPT" != "0" ]; then
echo "Setup chrony for NTP? (y/N)"
default_read setupchrony "N"
- if [ "$setupchrony" == "N" ] || [ "$setupchrony" == "n" ]; then
+ if [ "$setupchrony" = "N" ] || [ "$setupchrony" = "n" ]; then
exit 0
fi
fi
diff --git a/setup-sshd.in b/setup-sshd.in
index 0a86a86..4de32ac 100755
--- a/setup-sshd.in
+++ b/setup-sshd.in
@@ -31,7 +31,7 @@ done
if [ "$PROMPT" != "0" ]; then
echo "Setup sshd? (y/N)"
default_read setupsshd "N"
- if [ "$setupsshd" == "N" ] || [ "$setupsshd" == "n" ]; then
+ if [ "$setupsshd" = "N" ] || [ "$setupsshd" = "n" ]; then
exit 0
fi
fi
@@ -46,7 +46,7 @@ else
apk add openssh -q
fi
-if [ "$PASSWORDAUTH" == "N"]; then
+if [ "$PASSWORDAUTH" = "N"]; then
printf "PasswordAuthentication no\nUseDNS no\n" >> /etc/ssh/sshd_config
else
printf "UseDNS no\n" >> /etc/ssh/sshd_config