File: gconf2.postrm

package info (click to toggle)
gconf 3.2.6-5
  • links: PTS
  • area: main
  • in suites: buster
  • size: 14,988 kB
  • sloc: ansic: 39,702; sh: 11,189; python: 1,073; makefile: 445; xml: 332
file content (10 lines) | stat: -rw-r--r-- 191 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e

if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
  if [ -d /var/lib/gconf ]; then
    find /var/lib/gconf -mindepth 2 -maxdepth 2 -exec rm -rf \{} \;
  fi
fi

#DEBHELPER#