aboutsummaryrefslogtreecommitdiffstats
path: root/russian/apache13/pkg-deinstall
diff options
context:
space:
mode:
Diffstat (limited to 'russian/apache13/pkg-deinstall')
-rw-r--r--russian/apache13/pkg-deinstall15
1 files changed, 15 insertions, 0 deletions
diff --git a/russian/apache13/pkg-deinstall b/russian/apache13/pkg-deinstall
new file mode 100644
index 000000000000..dbb48b3c4f83
--- /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