Skip to content
Snippets Groups Projects
Commit 13c4adbe authored by Dmitry Shachnev's avatar Dmitry Shachnev
Browse files

debian/python.postrm.in: Handle purge command the same way as remove

(thanks to Mitsuya Shibata for the bug report)
parent 94cbe609
No related branches found
No related tags found
No related merge requests found
python-defaults (2.7.3-3) UNRELEASED; urgency=low
[ Piotr Ożarowski ]
* dh_python2:
- no longer sensitive to trailing slash in private dir names
(closes: #686358)
......@@ -8,6 +9,10 @@ python-defaults (2.7.3-3) UNRELEASED; urgency=low
- TODO: parse interpreter version number from --shebang option and add
apropriate dependency/rt* script arguments
[ Dmitry Shachnev ]
* debian/python.postrm.in: Handle purge command the same way as remove
(thanks to Mitsuya Shibata for the bug report)
-- Piotr Ożarowski <piotr@debian.org> Fri, 31 Aug 2012 18:06:26 +0200
python-defaults (2.7.3-2) unstable; urgency=low
......
#! /bin/sh
set -e
case "$1" in
purge)
case "$1" in remove|purge)
rm -rf /etc/python
esac
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment