diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2001-10-19 10:55:38 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2001-10-19 10:55:38 +0000 |
commit | 3279aeae0f3de1c23ab53f90b53ae64d912cb401 (patch) | |
tree | e060ed87acf5c07dc29c2c6a78e01dc6d555bf3b /security/drweb/pkg-install | |
parent | Actually commit the pkg-message cleanup that I missed before. (diff) |
Move user creation/deletion to pkg-*install
Notes
Notes:
svn path=/head/; revision=48933
Diffstat (limited to 'security/drweb/pkg-install')
-rw-r--r-- | security/drweb/pkg-install | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/security/drweb/pkg-install b/security/drweb/pkg-install new file mode 100644 index 000000000000..a9788a54cf32 --- /dev/null +++ b/security/drweb/pkg-install @@ -0,0 +1,52 @@ +#!/bin/sh +# $FreeBSD$ +# + +if [ "$2" != "POST-INSTALL" ]; then + exit 0 +fi + +USER=drweb +GROUP=${USER} +UID=426 +GID=${UID} +BINOWN=root +BINGRP=wheel +ex=0 + +if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then + if pw groupadd ${GROUP} -g ${GID}; then + echo "Added group \"${GROUP}\"." + else + echo "Adding group \"${GROUP}\" failed..." + ex=1 + fi +fi + +if ! pw usershow "${USER}" 2>/dev/null 1>&2; then + if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ + -s "/sbin/nologin" -d "/nonexistent" -c "Dr. Web Scanner" + then + echo "Added user \"${USER}\"." + else + echo "Adding user \"${USER}\" failed..." + ex=1 + fi +fi + +if ! grep -q "^!${USER}" /etc/syslog.conf; then + echo "You may also add this lines to your /etc/syslog.conf:" + echo "*.* /var/log/drwebd.log" + echo "" +fi +if ! grep -q ${USER} /etc/crontab; then + if ! crontab -l -u ${BINOWN} | grep -q ${USER}; then + echo "You may also add this crontab entry to /etc/crontab" + echo "0 12 * * * ${BINOWN} ${PKG_PREFIX}/drweb/update/update.pl ${PKG_PREFIX}/drweb" + echo "" + fi +fi +[ "$ex" = "1" ] && exit 1 +install -dv -m 0755 -o ${USER} -g ${BINGRP} ${PKG_PREFIX}/drweb/run +install -dv -m 0700 -o ${USER} -g ${BINGRP} ${PKG_PREFIX}/drweb/infected.!!! +exit 0 |