File: postrm

package info (click to toggle)
wm2 4-5.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 236 kB
  • ctags: 423
  • sloc: cpp: 3,648; makefile: 54; sh: 16
file content (15 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e


# leftover from old wm2 menu kludge

if [ "$1" = "purge" ]; then
  if [ -d /etc/X11/wm2 ]; then
    rm -r /etc/X11/wm2
  fi
  if [ -e /etc/menu-methods/wm2 ]; then
    rm -r /etc/menu-methods/wm2
  fi
fi

#DEBHELPER#