diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-12-02 08:52:40 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-12-02 08:52:40 +0100 |
commit | af16369cd594e64abec0d662f0fdbfe487c212d5 (patch) | |
tree | 6ad054d0ac2d95f392cf3d4994b8d204e3c2c4bf /debian/ipmitool.postinst | |
parent | 096a497b36f208fb68a12c7ae7576ca0a69f919d (diff) |
new release 1.8.15, Debian bug #766418), some other work
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 } |