diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2004-03-30 15:28:07 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2004-03-30 15:28:07 +0000 |
commit | 9fc0a4b07494c751628c6462d0ecd3f6473ac5a8 (patch) | |
tree | 897774f477bdf094f9f679c04f6a9923ae2d8ae5 /mail/cyrus-imapd2/pkg-deinstall | |
parent | 7694957199e62dae6c21d8d9e01e31bbd5af52eb (diff) | |
download | ports-9fc0a4b07494c751628c6462d0ecd3f6473ac5a8.tar.gz ports-9fc0a4b07494c751628c6462d0ecd3f6473ac5a8.zip |
Notes
Diffstat (limited to 'mail/cyrus-imapd2/pkg-deinstall')
-rw-r--r-- | mail/cyrus-imapd2/pkg-deinstall | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/mail/cyrus-imapd2/pkg-deinstall b/mail/cyrus-imapd2/pkg-deinstall index aed34d1fec6e..8bb9e0f75812 100644 --- a/mail/cyrus-imapd2/pkg-deinstall +++ b/mail/cyrus-imapd2/pkg-deinstall @@ -13,16 +13,16 @@ PKG_PREFIX=${PKG_PREFIX:=/usr/local} CYRUS_USER=${CYRUS_USER:=%%CYRUS_USER%%} checkfile() { - diff -bBqw $1 $1.dist >/dev/null 2>&1 - case $? in - 0) # config file exists, but is the same + diff -bBqw $1 $1.dist >/dev/null 2>&1 + case $? in + 0) # config file exists, but is the same rm $1 - ;; - 1) # config file exists and differs - ;; - *) # no config file exists - ;; - esac + ;; + 1) # config file exists and differs + ;; + *) # no config file exists + ;; + esac } # @@ -39,7 +39,7 @@ modify_cyrus_user() { fi uhome=/nonexistent - if ! ${PW} mod user ${USER} -d "${uhome}" -s "${shell}" \ ; then + if ! ${PW} mod user ${USER} -d "${uhome}" -s "${shell}"; then e=$? echo "*** Failed to update user \`${USER}'." exit ${e} |