diff options
Diffstat (limited to 'tests/t-disappear-diverted-other/pkg-divert/DEBIAN/postrm')
-rwxr-xr-x | tests/t-disappear-diverted-other/pkg-divert/DEBIAN/postrm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/t-disappear-diverted-other/pkg-divert/DEBIAN/postrm b/tests/t-disappear-diverted-other/pkg-divert/DEBIAN/postrm new file mode 100755 index 0000000..98891f6 --- /dev/null +++ b/tests/t-disappear-diverted-other/pkg-divert/DEBIAN/postrm @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e + +if [ "$1" = "purge" ] || [ "$1" = "disappear" ]; then + dpkg-divert --rename --remove /test-dir/test-divert +fi + |