diff options
Diffstat (limited to 'debian/ipmitool.postinst')
-rw-r--r-- | debian/ipmitool.postinst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/ipmitool.postinst b/debian/ipmitool.postinst index fb978c4..7064f87 100644 --- a/debian/ipmitool.postinst +++ b/debian/ipmitool.postinst @@ -6,11 +6,11 @@ set -e ipmievd_initd_failed() { echo "Unable to start ipmievd during installation. Trying to disable." if [ -f /etc/default/ipmievd ] && \ - grep -q ^ENABLED=false /etc/default/ipmievd ; then + grep -q ^ENABLED=\"false\" /etc/default/ipmievd ; then : else touch /etc/default/ipmievd - echo "ENABLED=false" >> /etc/default/ipmievd + echo "ENABLED=\"false\"" >> /etc/default/ipmievd fi } |