All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] disable tags in post-receive hook
@ 2012-04-11 16:26 Ben Myers
  2012-04-11 20:22 ` Christoph Hellwig
  2012-04-12  8:49 ` Stan Hoeppner
  0 siblings, 2 replies; 6+ messages in thread
From: Ben Myers @ 2012-04-11 16:26 UTC (permalink / raw)
  To: xfs

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

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-04-13  2:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-11 16:26 [PATCH] disable tags in post-receive hook Ben Myers
2012-04-11 20:22 ` Christoph Hellwig
2012-04-11 22:00   ` Ben Myers
2012-04-12  8:49 ` Stan Hoeppner
2012-04-12 16:15   ` Russell Cattelan
2012-04-13  2:45     ` Stan Hoeppner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.