[PATCH] disable tags in post-receive hook

Ben Myers bpm at sgi.com
Wed Apr 11 11:26:27 CDT 2012


Hey Folks,

    Yesterday I pushed tags to the oss.sgi.com xfs git repository and forgot to
    disable the post-receive hook which generates email to the list at commit
    time.  You probably saw the resulting mailbomb.  I'm sorry about that.  In
    order to make sure it doesn't happen again next time, I have applied the
    following patch to our post-receive hook:


--- post-receive-email.xfs	2009-01-16 01:05:09.000000000 -0600
+++ post-receive-email.xfs.tags_disabled	2012-04-11 10:39:30.542537604 -0500
@@ -105,6 +105,9 @@
 			# un-annotated tag
 			refname_type="tag"
 			short_refname=${refname##refs/tags/}
+			# bpm: clear recipients to disable sending email for 
+			# tags.  I just mail bombed the list.  3/11/12
+			recipients=""
 			;;
 		refs/tags/*,tag)
 			# annotated tag
@@ -114,6 +117,9 @@
 			if [ -n "$announcerecipients" ]; then
 				recipients="$announcerecipients"
 			fi
+			# bpm: clear recipients to disable sending email for 
+			# tags.  I just mail bombed the list.  3/11/12
+			recipients=""
 			;;
 		refs/heads/*,commit)
 			# branch


    I've tested it out and it seems to have the desired effect.  So... just a
    heads up, you won't be receiving mail for new tags in the xfs git repo on
    oss.sgi.com.

Regards,
Ben



More information about the xfs mailing list