summaryrefslogtreecommitdiff
path: root/debian/mdadm.postinst
diff options
context:
space:
mode:
authormadduck <madduck@3cfab66f-1918-0410-86b3-c06b76f9a464>2006-08-20 13:20:43 +0000
committermadduck <madduck@3cfab66f-1918-0410-86b3-c06b76f9a464>2006-08-20 13:20:43 +0000
commitd2426b79b5216b60126b67d8af875a703a931fda (patch)
treee6b23a9153d0c5ac8720ce27dce536aa6c7e725d /debian/mdadm.postinst
parent0ff5de1c285abffc7dc28c253664eb983e07814d (diff)
set -eu instead of shebang line
Diffstat (limited to 'debian/mdadm.postinst')
-rw-r--r--debian/mdadm.postinst4
1 files changed, 3 insertions, 1 deletions
diff --git a/debian/mdadm.postinst b/debian/mdadm.postinst
index 0ddb59e2..7b75a4e3 100644
--- a/debian/mdadm.postinst
+++ b/debian/mdadm.postinst
@@ -1,4 +1,4 @@
-#!/bin/sh -eu
+#!/bin/sh
# Copyright © 2001-2005 Mario Jou/3en <joussen@debian.org>
# Copyright © 2005-2006 Martin F. Krafft <madduck@debian.org>
# Distributable under the terms of the GNU GPL version 2.
@@ -6,6 +6,8 @@
# $Id$
#
+set -eu
+
if [ "${1:-}" = "configure" ]; then
set +u # debconf workaround. See #369953