summaryrefslogtreecommitdiff
path: root/autoscripts/postrm-gconf
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-05-29 10:53:58 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-05-29 10:53:58 -0400
commitf9a52839c6ee980150ecfd8dbf26cef1e7dc0122 (patch)
tree7f0b59a2112f640a5671dc56462f11928d21a407 /autoscripts/postrm-gconf
parent1cdb8b8fd1faa5688cde5e96c994ff2a8ae6ae4e (diff)
dh_gconf: Remove postrm fragment that handled schema migration from /etc to /usr. Closes: #531035
Diffstat (limited to 'autoscripts/postrm-gconf')
-rw-r--r--autoscripts/postrm-gconf10
1 files changed, 0 insertions, 10 deletions
diff --git a/autoscripts/postrm-gconf b/autoscripts/postrm-gconf
deleted file mode 100644
index c05eb43d..00000000
--- a/autoscripts/postrm-gconf
+++ /dev/null
@@ -1,10 +0,0 @@
-if [ "$1" = purge ]; then
- OLD_DIR=/etc/gconf/schemas
- SCHEMA_FILES="#SCHEMAS#"
- if [ -d $OLD_DIR ]; then
- for SCHEMA in $SCHEMA_FILES; do
- rm -f $OLD_DIR/$SCHEMA
- done
- rmdir -p --ignore-fail-on-non-empty $OLD_DIR
- fi
-fi