diff options
author | Nicolas Vigier <boklm@mageia.org> | 2011-01-08 14:37:48 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2011-01-08 14:37:48 +0000 |
commit | 9fae0b6de0b5a21bc9985e6a4d85ae22bfe1f0d4 (patch) | |
tree | 441737c150953481c63411c9708393492d6f8413 /modules/subversion/templates | |
parent | 88c21fbcb6395a4b516ce2668dcd95d71fe6f988 (diff) | |
download | puppet-9fae0b6de0b5a21bc9985e6a4d85ae22bfe1f0d4.tar puppet-9fae0b6de0b5a21bc9985e6a4d85ae22bfe1f0d4.tar.gz puppet-9fae0b6de0b5a21bc9985e6a4d85ae22bfe1f0d4.tar.bz2 puppet-9fae0b6de0b5a21bc9985e6a4d85ae22bfe1f0d4.tar.xz puppet-9fae0b6de0b5a21bc9985e6a4d85ae22bfe1f0d4.zip |
add an option to not send commits from some authors to cia
Diffstat (limited to 'modules/subversion/templates')
-rwxr-xr-x | modules/subversion/templates/ciabot_svn.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/subversion/templates/ciabot_svn.sh b/modules/subversion/templates/ciabot_svn.sh index 9f30e173..bec23aad 100755 --- a/modules/subversion/templates/ciabot_svn.sh +++ b/modules/subversion/templates/ciabot_svn.sh @@ -66,6 +66,7 @@ project_name="Mageia" module_name="<%= cia_module %>" return_address="root@<%= domain %>" +ignore_author="<%= cia_ignore_author %>" # System sendmail_command="/usr/sbin/sendmail -t" @@ -80,6 +81,10 @@ REV="$2" cia_address="cia@cia.navi.cx" author=`svnlook author -r "$REV" "$REPOS" | sed 's/\&/\&/g;s/</\</g;s/>/\>/g'` +if test -n "$ignore_author" && echo "$author" | grep -q "$ignore_author" +then + exit 0 +fi log=`svnlook log -r "$REV" "$REPOS" | sed 's/\&/\&/g;s/</\</g;s/>/\>/g'` diff_lines=`svnlook diff -r "$REV" "$REPOS" | wc -l` for file in `svnlook changed -r "$REV" "$REPOS" | cut -c 3- | sed 's/\&/\&/g;s/</\</g;s/>/\>/g'`; do |