diff options
author | Renato Botelho <garga@FreeBSD.org> | 2005-08-09 13:58:39 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2005-08-09 13:58:39 +0000 |
commit | d06912e6efb159bf77e12d294c0090426fa385ee (patch) | |
tree | 01ebb26682c2f63cbb81a17768a0f22d0b84d7eb /mail/simscan/scripts | |
parent | - Mark BROKEN on sparc64/ia64 (diff) |
Move adduser proccess from configure to pre-install time to prevent
problems to update using portupgrade.
PR: ports/83100
Submitted by: self
Approved by: portmgr (krion), Anton Karpov <toxa@toxahost.ru> (maintainer)
Notes
Notes:
svn path=/head/; revision=140822
Diffstat (limited to 'mail/simscan/scripts')
-rw-r--r-- | mail/simscan/scripts/configure | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/mail/simscan/scripts/configure b/mail/simscan/scripts/configure deleted file mode 100644 index d502120cd0b5..000000000000 --- a/mail/simscan/scripts/configure +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -USER=simscan -GROUP=${USER} -UID=74 -GID=${UID} - -echo adding simscan user - - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d /nonexistent -s /sbin/nologin -c "Simscan User" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi |