blob: c0e592b0ed38449efc30dbb7284deadf93718372 (
plain)
1
2
3
4
5
6
7
8
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
|