File: postrm

package info (click to toggle)
elida 0.4%2Bnmu2
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 72 kB
  • sloc: sh: 409; makefile: 35
file content (10 lines) | stat: -rw-r--r-- 125 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

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

exit 0