Hi there,

After upgrading Puppet from 0.24.8 to 2.6.1rc2 at my company, I notice
that puppet agent's --tags option is not honored anymore:

$ puppet agent -t --tags haproxy
Aug 26 10:49:17 myhost puppet-agent[24694]: Fact syncing is deprecated
as of 0.25 -- use 'pluginsync' instead
Aug 26 10:49:17 myhost puppet-agent[24694]: Retrieving fact
Aug 26 10:49:19 myhost puppet-agent[24694]: Caching catalog for myhost
Aug 26 10:49:21 myhost puppet-agent[24694]: Applying configuration
version '1282812559'
Aug 26 10:49:21 myhost puppet-agent[24694]: Finished catalog run in 0.35 seconds

When running without --tags option:

$ puppet agent -t
Aug 26 10:50:06 myhost puppet-agent[24980]: Fact syncing is deprecated
as of 0.25 -- use 'pluginsync' instead
Aug 26 10:50:06 myhost puppet-agent[24980]: Retrieving fact
Aug 26 10:50:07 myhost puppet-agent[24980]: Caching catalog for myhost
Aug 26 10:50:09 myhost puppet-agent[24980]: Applying configuration
version '1282812559'
Aug 26 10:50:12 myhost puppet-agent[24980]:
(/Stage[main]//Node[default]/Exec[apt-get update]/returns) executed
successfully
Aug 26 10:50:13 myhost puppet-agent[24980]: FileBucket adding
/etc/haproxy/haproxy.cfg as {md5}3ec8e4cae37dbd31a39343aee996c2b7
Aug 26 10:50:13 myhost puppet-agent[24980]:
(/Stage[main]/Production_webserver/Haproxy[haproxy]/File[/etc/haproxy/haproxy.cfg])
Filebucketed /etc/haproxy/haproxy.cfg to puppet with sum
3ec8e4cae37dbd31a39343aee996c2b7
Aug 26 10:50:13 myhost puppet-agent[24980]:
(/Stage[main]/Production_webserver/Haproxy[haproxy]/File[/etc/haproxy/haproxy.cfg]/content)
content changed '{md5}3ec8e4cae37dbd31a39343aee996c2b7' to
'{md5}049eb2e67261991fa3453d79a8be0ef1'
Aug 26 10:50:20 myhost puppet-agent[24980]: Finished catalog run in
11.40 seconds

"haproxy" is actually the name of a definition:

define haproxy() {
    file { "/etc/haproxy/haproxy.cfg":
      mode   => 640,
      owner  => root,
      group  => root,
      content => template('haproxy.rb'),
      require => Package["haproxy"]
    }

    package { "haproxy":
      ensure => installed
    }
}

This used to work with 0.24.8, would be nice to fix.

Cheers,
-- 
Jean-Baptiste Quenot

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

Reply via email to