diff options
author | unknown <iggy@rolltop.ignatz42.dyndns.org> | 2006-09-14 10:57:00 -0400 |
---|---|---|
committer | unknown <iggy@rolltop.ignatz42.dyndns.org> | 2006-09-14 10:57:00 -0400 |
commit | 2c79eff8d3e149206b073b16cb715be593fd321c (patch) | |
tree | 034f7c73708f32a28d3d57abf7edd9c1ba067836 /BitKeeper | |
parent | e90f2c4ff57a52920f44d534796dca7dc45597b7 (diff) | |
download | mariadb-git-2c79eff8d3e149206b073b16cb715be593fd321c.tar.gz |
/usr/sbin not always in PATH environment variable.
BitKeeper/triggers/post-commit:
Attempt to default to /usr/sbin/sendmail if it exists, otherwise use sendmail.
Diffstat (limited to 'BitKeeper')
-rwxr-xr-x | BitKeeper/triggers/post-commit | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/BitKeeper/triggers/post-commit b/BitKeeper/triggers/post-commit index 37bdfc93a4a..981b55c66ec 100755 --- a/BitKeeper/triggers/post-commit +++ b/BitKeeper/triggers/post-commit @@ -8,6 +8,12 @@ LIMIT=10000 VERSION="5.0" BKROOT=`bk root` +if [ -x /usr/sbin/sendmail ]; then + SENDMAIL=/usr/sbin/sendmail +else + SENDMAIL=sendmail +fi + if [ "$REAL_EMAIL" = "" ] then echo "Warning: you must set REAL_EMAIL in your profile" @@ -61,7 +67,7 @@ EOF bk cset -r+ -d ) > $BKROOT/BitKeeper/tmp/dev_public.txt -bk sendmail -t < $BKROOT/BitKeeper/tmp/dev_public.txt +$SENDMAIL -t < $BKROOT/BitKeeper/tmp/dev_public.txt #++ # commits@ mail @@ -87,7 +93,7 @@ EOF bk cset -r+ -d ) | bk sed -e ${LIMIT}q > $BKROOT/BitKeeper/tmp/commits.txt -bk sendmail -t < $BKROOT/BitKeeper/tmp/commits.txt +$SENDMAIL -t < $BKROOT/BitKeeper/tmp/commits.txt #++ # docs-commit@ mail @@ -108,7 +114,7 @@ EOF bk changes -v -r+ bk cset -r+ -d ) > $BKROOT/BitKeeper/tmp/docs.txt - bk sendmail -t < $BKROOT/BitKeeper/tmp/docs.txt + $SENDMAIL -t < $BKROOT/BitKeeper/tmp/docs.txt fi else |