File: postrm

package info (click to toggle)
elida 0.4.0
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 80 kB
  • sloc: sh: 409; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 137 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -e

if [ "$1" = "purge" ]; then
    update-rc.d elida remove >/dev/null
#   rm -fr /usr/src/elida
fi

#DEBHELPER#

exit 0