|
Safe removal of a user while purging: msg#00200linux.debian.devel.mentors
Hi, I'm trying to remove the clamav user when purging the clamav package. The user clamav is created in postinst using: adduser --system --no-create-home \ --disabled-password --disabled-login \ --shell /bin/false --home /var clamav resulting in the entries /etc/shadow: clamav:!:11867:0:99999:7::: /etc/passwd: clamav:x:103:65534::/var:/bin/false Is there any maintainer script but postrm that get info about a purge? If not, is there any good way to remove the user (I.e not by hand), while avoiding to break policy 7.2? "...Note, however, that the postrm cannot rely on any non-essential packages to be present during the purge phase...." (deluser isn't essential). If there aren't any way, is this script safe enough? #! /bin/sh set -e case "$1" in purge) TMPFILE=`tempfile` chown root:root $TMPFILE chmod 600 $TMPFILE sed 's/clamav:!:[0-9]*:[0-9]*:[0-9]*:[0-9]*::://' /etc/shadow > $TMPFILE sed '/^$/d' $TMPFILE > /etc/shadow sed 's/clamav:x:[0-9]*:[0-9]*::\/var:\/bin\/false//' /etc/passwd > $TMPFILE sed '/^$/d' $TMPFILE > /etc/passwd rm $TMPFILE ;; remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 0 esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# -- Magnus Ekdahl 0739-287181 magnus@xxxxxxxxxx maguno@xxxxxxxxxxxx public key available at http://oxtan.campus.luth.se/magnus.public ftp://ftp.se.debian.org/debian-non-US/pool/non-US/main/d/debian-keyring/ Key fingerprint = 18DE CB62 8A86 374E 824E 09ED 1987 4B18 1213 79F6 -- To UNSUBSCRIBE, email to debian-mentors-request@xxxxxxxxxxxxxxxx with a subject of "unsubscribe". Trouble? Contact listmaster@xxxxxxxxxxxxxxxx |
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | Re: Libtool for multiple libs in one source package: 00200, Junichi Uekawa |
|---|---|
| Next by Date: | Re: Safe removal of a user while purging: 00200, Tollef Fog Heen |
| Previous by Thread: | fixing rc bugsi: 00200, Ludovic Drolez |
| Next by Thread: | Re: Safe removal of a user while purging: 00200, Tollef Fog Heen |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
| News | FAQ | advertise |