diff options
author | Ollivier Robert <roberto@FreeBSD.org> | 2018-11-06 14:52:43 +0000 |
---|---|---|
committer | Ollivier Robert <roberto@FreeBSD.org> | 2018-11-06 14:52:43 +0000 |
commit | 56b6a5eafc0512dd60c8df26ee59b3e27d0e5cf4 (patch) | |
tree | 00606748bf4e0f6a53ff043b6269266289fd0dff /mail/fetchmail/files | |
parent | Flacon 5.0.0 is out! (diff) |
mail/fetchmail:
- Ensure the fetchmail script returns 1 if fetchmail is not running.
- Bump PORTREVISION.
PR: ports/219051
Notes
Notes:
svn path=/head/; revision=484295
Diffstat (limited to 'mail/fetchmail/files')
-rw-r--r-- | mail/fetchmail/files/fetchmail.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/fetchmail/files/fetchmail.in b/mail/fetchmail/files/fetchmail.in index b3b3bd2c4862..e1c66d40fbdf 100644 --- a/mail/fetchmail/files/fetchmail.in +++ b/mail/fetchmail/files/fetchmail.in @@ -137,6 +137,7 @@ else retcode="$?" if [ "0${retcode}" -ne 0 ]; then failed="${user} (${retcode}) ${failed:-}" + exit 1 else success="${user} ${success:-}" fi |