diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-07-08 09:27:37 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-07-08 09:27:37 +0000 |
commit | 30abf00a60107bb5ce1bdf6ed2b4ba3e011f33f4 (patch) | |
tree | 5fe990d09eb319d7464e659d98fb06e1f240b2a1 /russian/apache13/pkg-deinstall | |
parent | 0b0b9a266c9a17e547cde5b7d563a0ae6a32278b (diff) | |
download | FreeBSD-ports-30abf00a60107bb5ce1bdf6ed2b4ba3e011f33f4.zip FreeBSD-ports-30abf00a60107bb5ce1bdf6ed2b4ba3e011f33f4.tar.gz |
upgrade to 1.3.26PL30.15
PR: 40187
Submitted by: maintainer
Diffstat (limited to 'russian/apache13/pkg-deinstall')
-rw-r--r-- | russian/apache13/pkg-deinstall | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/russian/apache13/pkg-deinstall b/russian/apache13/pkg-deinstall new file mode 100644 index 0000000..dbb48b3 --- /dev/null +++ b/russian/apache13/pkg-deinstall @@ -0,0 +1,15 @@ +#!/bin/sh +# $FreeBSD: /tmp/pcvs/ports/russian/apache13/Attic/pkg-deinstall,v 1.1 2002-07-08 09:27:37 ijliao Exp $ +# + +if [ "$2" != "POST-DEINSTALL" ]; then + exit 0 +fi + +USER=www + +if pw usershow "${USER}" 2>/dev/null 1>&2; then + echo "To delete Apache user permanently, use 'pw userdel ${USER}'" +fi + +exit 0 |