diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2001-10-20 11:08:44 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2001-10-20 11:08:44 +0000 |
commit | 1a56d1f4c13ac7ab7ad047b9cbc8dc63cfd2494f (patch) | |
tree | e227a23c10d8c2f807ecfeebd4290d4b8604422b /security/drweb-sendmail | |
parent | df9f60c715b94edd267f66b38cfa1fd8e39ad4d3 (diff) | |
download | ports-1a56d1f4c13ac7ab7ad047b9cbc8dc63cfd2494f.tar.gz ports-1a56d1f4c13ac7ab7ad047b9cbc8dc63cfd2494f.zip |
Notes
Diffstat (limited to 'security/drweb-sendmail')
-rw-r--r-- | security/drweb-sendmail/Makefile | 2 | ||||
-rw-r--r-- | security/drweb-sendmail/pkg-deinstall | 22 |
2 files changed, 1 insertions, 23 deletions
diff --git a/security/drweb-sendmail/Makefile b/security/drweb-sendmail/Makefile index 0affc10fae0e..a40d665f2f47 100644 --- a/security/drweb-sendmail/Makefile +++ b/security/drweb-sendmail/Makefile @@ -7,7 +7,7 @@ PORTNAME= drweb_sendmail PORTVERSION= 4.26 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= security mail MASTER_SITES= http://www.drweb.ru/ftp/web_pub/ DISTNAME= drwebd-${PORTVERSION}-freebsd4 diff --git a/security/drweb-sendmail/pkg-deinstall b/security/drweb-sendmail/pkg-deinstall deleted file mode 100644 index fe71e9e62b5e..000000000000 --- a/security/drweb-sendmail/pkg-deinstall +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -# $FreeBSD$ -# - -if [ "$2" != "POST-DEINSTALL" ]; then - exit 0 -fi - -USER=drweb -ex=0 - -if pw usershow "${USER}" 2>/dev/null 1>&2; then - if pw userdel ${USER}; then - echo "Delete user/group \"${USER}\"." - else - echo "Deleting user/group \"${USER}\" failed..." - ex=1 - fi -fi - -[ "$ex" = "1" ] && exit 1 -exit 0 |