summaryrefslogtreecommitdiffstats
path: root/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN
diff options
context:
space:
mode:
Diffstat (limited to 'tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN')
-rw-r--r--tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/control7
-rwxr-xr-xtests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postinst7
-rwxr-xr-xtests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postrm7
3 files changed, 21 insertions, 0 deletions
diff --git a/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/control b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/control
new file mode 100644
index 0000000..e904178
--- /dev/null
+++ b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/control
@@ -0,0 +1,7 @@
+Package: pkg-dir-shared-notempty
+Version: 0
+Section: test
+Priority: extra
+Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org>
+Architecture: all
+Description: test package - shared directory with a config file
diff --git a/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postinst b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postinst
new file mode 100755
index 0000000..d3cc9ef
--- /dev/null
+++ b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postinst
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+case "$1" in
+configure)
+ touch "$DPKG_ROOT/test-dir/subdir/subsubdir/file"
+ ;;
+esac
diff --git a/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postrm b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postrm
new file mode 100755
index 0000000..7906c69
--- /dev/null
+++ b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postrm
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+case "$1" in
+purge)
+ rm "$DPKG_ROOT/test-dir/subdir/subsubdir/file"
+ ;;
+esac