diff options
| author | Matthias Klose <doko@debian.org> | 2012-02-26 14:35:43 +0000 |
|---|---|---|
| committer | Matthias Klose <doko@debian.org> | 2012-02-26 14:35:43 +0000 |
| commit | 6cef3e7f0bc3a668a3fcdcd768e305baa8fbad06 (patch) | |
| tree | f22ad7592ba478f9444af60e9c13f85f25dcb475 /debian/java-common.postrm | |
| parent | fa6be5dcd9d2866980cabd0847bf507900d84645 (diff) | |
| download | java-common-6cef3e7f0bc3a668a3fcdcd768e305baa8fbad06.tar.gz | |
java-common (0.47) unstable; urgency=low
* Add creation and removal of /etc/.java (common to different OpenJDK
versions) in java-common maintainer scripts. Closes: #660604.
* Remove Michael from the uploaders list. Closes: #654029.
-- Matthias Klose <doko@debian.org> Sun, 26 Feb 2012 15:19:30 +0100
Diffstat (limited to 'debian/java-common.postrm')
| -rw-r--r-- | debian/java-common.postrm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/java-common.postrm b/debian/java-common.postrm new file mode 100644 index 0000000..4e16477 --- /dev/null +++ b/debian/java-common.postrm @@ -0,0 +1,11 @@ +#!/bin/sh -e + +case "$1" in +purge) + rm -rf /etc/.java + ;; +esac + +#DEBHELPER# + +exit 0 |
