diff options
Diffstat (limited to 'tests/t-conffile-obsolete/pkg-conff-obsolete-2/DEBIAN/preinst')
-rwxr-xr-x | tests/t-conffile-obsolete/pkg-conff-obsolete-2/DEBIAN/preinst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/t-conffile-obsolete/pkg-conff-obsolete-2/DEBIAN/preinst b/tests/t-conffile-obsolete/pkg-conff-obsolete-2/DEBIAN/preinst new file mode 100755 index 0000000..c0e592b --- /dev/null +++ b/tests/t-conffile-obsolete/pkg-conff-obsolete-2/DEBIAN/preinst @@ -0,0 +1,9 @@ +#!/bin/sh +if dpkg-maintscript-helper supports rm_conffile; then + dpkg-maintscript-helper rm_conffile /test-conffile 0 -- "$@" +fi + +if [ -e "$DPKG_ROOT/fail-preinst" ]; then + exit 1 +fi + |