diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2003-09-26 07:17:47 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2003-09-26 07:17:47 +0000 |
commit | 23214d189f6af6b003a2f55adb6f8f1dbe403de9 (patch) | |
tree | 04ce4184c394e3c44b61d95182914b07b8595291 /mail/noattach/files | |
parent | update audio/teamspeak_client: 2.0.29.47 -> 2.0.32 (diff) |
- Fix bogus kill -SIGUSR1 to -USR1 for reload target
- update Usage.
Notes
Notes:
svn path=/head/; revision=89422
Diffstat (limited to 'mail/noattach/files')
-rw-r--r-- | mail/noattach/files/noattach.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/noattach/files/noattach.sh b/mail/noattach/files/noattach.sh index 95589b4b3021..3a63cb9be69e 100644 --- a/mail/noattach/files/noattach.sh +++ b/mail/noattach/files/noattach.sh @@ -24,13 +24,13 @@ stop) reload) if test -r /var/run/noattach.pid then - kill `head -SIGUSR1 /var/run/noattach.pid` + kill -USR1 `head -1 /var/run/noattach.pid` else echo " noattach: not running" 2>&1 fi ;; *) - echo "Usage: ${0##*/}: { start | stop }" 2>&1 + echo "Usage: ${0##*/}: { start | stop | reload }" 2>&1 exit 65 ;; esac |