root/alternc/trunk/debian/alternc-slave.prerm
| Revision 2312, 415 bytes (checked in by anarcat, 2 months ago) | |
|---|---|
| |
| Line | |
|---|---|
| 1 | #!/bin/sh -e |
| 2 | |
| 3 | # Debian alternc prerm |
| 4 | # Benjamin Sonntag <benjamin@alternc.org> |
| 5 | |
| 6 | case "$1" in |
| 7 | remove) |
| 8 | # remove postfix from the sasl group (might not be user will though...) |
| 9 | deluser --quiet postfix sasl || true |
| 10 | ;; |
| 11 | |
| 12 | upgrade) |
| 13 | ;; |
| 14 | |
| 15 | purge) |
| 16 | ;; |
| 17 | |
| 18 | failed-upgrade|abort-install|abort-upgrade|disappear) |
| 19 | ;; |
| 20 | |
| 21 | *) |
| 22 | echo "postrm called with unknown argument '$1'" >&2 |
| 23 | exit 1 |
| 24 | ;; |
| 25 | esac |
| 26 | |
| 27 | #DEBHELPER# |
| 28 |
Note: See TracBrowser for help on using the browser.
