diff options
Diffstat (limited to 'autoscripts')
-rw-r--r-- | autoscripts/postrm-gconf | 10 |
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 |