diff options
author | ume <ume@FreeBSD.org> | 2004-07-28 10:45:19 +0000 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2004-07-28 10:45:19 +0000 |
commit | 288c2607ac3df12cb48943614b542660c35b6e77 (patch) | |
tree | 54c009168906e7f1d32cd2fcd45fc51158d1f342 /mail/cyrus-imapd24 | |
parent | 613c9ff0597ebb2e480fa66641be0de01debd570 (diff) | |
download | FreeBSD-ports-288c2607ac3df12cb48943614b542660c35b6e77.zip FreeBSD-ports-288c2607ac3df12cb48943614b542660c35b6e77.tar.gz |
don't exit at failure of `pw'. some users prefer having user
`cyrus' in NIS.
Reported by: nork
Diffstat (limited to 'mail/cyrus-imapd24')
-rw-r--r-- | mail/cyrus-imapd24/pkg-deinstall | 5 | ||||
-rw-r--r-- | mail/cyrus-imapd24/pkg-install | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/mail/cyrus-imapd24/pkg-deinstall b/mail/cyrus-imapd24/pkg-deinstall index 7374db6..e0dd1b8 100644 --- a/mail/cyrus-imapd24/pkg-deinstall +++ b/mail/cyrus-imapd24/pkg-deinstall @@ -41,11 +41,10 @@ modify_cyrus_user() { uhome=/nonexistent if ! ${PW} mod user ${USER} -d "${uhome}" -s "${shell}"; then - e=$? echo "*** Failed to update user \`${USER}'." - exit ${e} + else + echo "*** Updated user \`${USER}'." fi - echo "*** Updated user \`${USER}'." } case $2 in diff --git a/mail/cyrus-imapd24/pkg-install b/mail/cyrus-imapd24/pkg-install index 556a643..d2ba72f 100644 --- a/mail/cyrus-imapd24/pkg-install +++ b/mail/cyrus-imapd24/pkg-install @@ -18,11 +18,10 @@ modify_cyrus_user() { uhome=${PKG_PREFIX}/cyrus if ! ${PW} mod user ${USER} -d "${uhome}" -s "${shell}"; then - e=$? - echo "*** Failed to update user \`${USER}'." - exit ${e} + echo "*** Failed to update user \`${USER}'." + else + echo "*** Updated user \`${USER}'." fi - echo "*** Updated user \`${USER}'." } |