commit: 3a2e2f10ac415d450e9128df265c43c086bd82d0
parent 0d915f160af40860d4e47a660d4d6a0937e43707
Author: Mathieu Goessens <geb@breizh-entropy.org>
Date: Mon, 22 Jul 2013 19:43:35 +0200
remove bashisms in idrop-lighttpd/DEBIAN/postinst , widrop-lighttpd/DEBIAN/postrm
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/pkg/widrop-lighttpd/DEBIAN/postinst b/src/pkg/widrop-lighttpd/DEBIAN/postinst
@@ -4,7 +4,7 @@ case $1 in
"configure")
echo Configuring lighttpd for widrop
- [[ -f /etc/lighttpd/conf-enabled/00-widrop.conf ]] || (
+ [ -f /etc/lighttpd/conf-enabled/00-widrop.conf ] || (
lighty-enable-mod widrop
/etc/init.d/lighttpd force-reload
)
diff --git a/src/pkg/widrop-lighttpd/DEBIAN/postrm b/src/pkg/widrop-lighttpd/DEBIAN/postrm
@@ -3,7 +3,7 @@
case $1 in
"remove")
echo Removing lighttpd configuration for widrop
- [[ -f /etc/lighttpd/conf-enabled/00-widrop.conf ]] || (
+ [ -f /etc/lighttpd/conf-enabled/00-widrop.conf ] || (
lighty-disabled-mod widrop
/etc/init.d/lighttpd force-reload
)