summaryrefslogtreecommitdiff
path: root/www/apache21/pkg-deinstall
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2002-05-09 03:55:18 +0000
committerCy Schubert <cy@FreeBSD.org>2002-05-09 03:55:18 +0000
commit90cd8b73d73c0fac38dd1142b0af1c63e3abf8ae (patch)
tree3e60c050af84b71355662e8daf9cbb280524e50d /www/apache21/pkg-deinstall
parentUpdate to 1.0.1. (diff)
1. Upgrade 2.0.35 --> 2.0.36
2. Port printed message to "pw userdel www" if port removed permanently. However master.passwd 1.25.2.5 has user www by default, so this is no longer correct advice. Removed pkg-deinstall to correct this. PR: 37849 and 36907 Approved by: MAINTAINER: Hye-Shik Chang <perky@fallin.lv>
Notes
Notes: svn path=/head/; revision=58782
Diffstat (limited to 'www/apache21/pkg-deinstall')
-rw-r--r--www/apache21/pkg-deinstall15
1 files changed, 0 insertions, 15 deletions
diff --git a/www/apache21/pkg-deinstall b/www/apache21/pkg-deinstall
deleted file mode 100644
index d1162ea1a922..000000000000
--- a/www/apache21/pkg-deinstall
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-# $FreeBSD: /tmp/pcvs/ports/www/apache21/Attic/pkg-deinstall,v 1.4 2001-12-07 23:12:32 ache 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