On Feb 1, 7:28 am, Doug Warner <d...@warner.fm> wrote:
> I forgot to mention that I've tried "ensure => absent" in my child class but
> the package still seems to get installed.

[...]

> class PkgGroup {}
> class PkgGroup::InstallPkg inherits PkgGroup {
>   package { coolpkg: ensure => latest, }}
>
> class PkgGroup::InstallPkg::disabled inherits PkgGroup::InstallPkg {
>   Package['coolpkg'] { ensure => absent, }
>
> }

I'm inclined to think, then, that PkgGroup::InstallPkg::disabled is
not being included in the manifest for the affected node.  Perhaps
it's part of a conditional branch that's not taken?

Moreover, what you would achieve with this if it were working is
different from what you initially asked for: in this case, Puppet
definitely *does* care whether the package is installed on the node,
for it removes the package if it is present.

Since this is a hack anyway, perhaps it would be quicker and easier to
comment out the relevant include statement, or to use an if statement
to disable it for the particular node in question.


John

-- 
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