Hi all,

I wanted to check I'm not doing anything wrong before I lodge a bug. I 
think composite tags should work according to this doc:

http://docs.puppetlabs.com/puppet/3/reference/lang_tags.html#restricting-catalog-runs

However I do not get the expected behaviour with my test using Puppet 3:

$ puppet apply test.pp --noop --tags "woof,service"
Notice: /Stage[main]//File[/tmp/foo]/ensure: current_value absent, should 
be present (noop)
Notice: /Stage[main]//File[/tmp/bar]/ensure: current_value absent, should 
be present (noop)
Notice: /Stage[main]//Service[foo]/ensure: current_value stopped, should be 
running (noop)

For this catalog:

file { '/tmp/foo':
  ensure => present,
  tag    => [ 'woof', 'cow' ],
}
service { 'foo':
  ensure => running,
  tag    => [ 'woof', 'cow' ],
}
file { '/tmp/bar':
  ensure => present,
  notify => Service['foo'],
}

It should only work on the service, not everything.

Bug, yes?

-Luke

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to