summaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2012-11-06 16:32:59 -0600
committerWilliam Hubbs <w.d.hubbs@gmail.com>2012-11-06 16:32:59 -0600
commitec60e20331c7becd1b46ca38291f4c75db25e168 (patch)
treeedc95b381dd1ac14fa16e420b50bc195369c59e5 /sh
parent5657fa797512b31ada66e901b891961e63861208 (diff)
downloadopenrc-ec60e20331c7becd1b46ca38291f4c75db25e168.tar.gz
openrc-ec60e20331c7becd1b46ca38291f4c75db25e168.tar.bz2
openrc-ec60e20331c7becd1b46ca38291f4c75db25e168.tar.xz
tmpfiles: fix bashism
reported-by: <pesa@gentoo.org>
Diffstat (limited to 'sh')
-rwxr-xr-xsh/tmpfiles.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/tmpfiles.sh.in b/sh/tmpfiles.sh.in
index a5041bb..ca0cbc3 100755
--- a/sh/tmpfiles.sh.in
+++ b/sh/tmpfiles.sh.in
@@ -232,7 +232,7 @@ if [ $(( CLEAN )) -eq 1 ] ; then
exit 1
fi
-if [ "$CREATE$REMOVE" == '00' ]; then
+if [ "$CREATE$REMOVE" = '00' ]; then
printf 'usage: %s [--create] [--remove] [--clean] [--verbose] [--dry-run]\n' "${0##*/}"
exit 1
fi