diff options
Diffstat (limited to 'mail/cyrus-imapd24/pkg-deinstall')
-rw-r--r-- | mail/cyrus-imapd24/pkg-deinstall | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/mail/cyrus-imapd24/pkg-deinstall b/mail/cyrus-imapd24/pkg-deinstall index aed34d1..8bb9e0f 100644 --- a/mail/cyrus-imapd24/pkg-deinstall +++ b/mail/cyrus-imapd24/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} |