File: gconf2.postrm

package info (click to toggle)
gconf 3.2.6-7
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 15,116 kB
  • sloc: ansic: 39,709; sh: 11,189; python: 1,107; makefile: 444; 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#