Displaying 1 result from an estimated 1 matches for "using_tag".
Did you mean:
  using_tags
  
2011 Dec 06
0
scope of tags
According to the tagging documentation[1], tags are automatically
created for enclosing node, define, and class structures.
  1.  http://projects.puppetlabs.com/projects/1/wiki/Using_Tags#Automatic-Tagging
If I create three classes like this:
	class first {
	  tag(''doot'')
	}
	class second {
	  if tagged(first) {
		 warning(''first tag found'')
	  } else {
		 warning(''first tag not found'')
	  }
	  if tagged(doot) {
		 warning(...