I am trying to implement stages in 2.6.2 (both client and server)

<====site.pp====>

stage { [baseos, pre, post, brsoft]: }
class runstages { Stage[baseos] -> Stage[pre] -> Stage[main] ->
Stage[post] -> Stage[brsoft] }

node default {
        include runstages
        include debian::base_packages
}
<====end====>

<====packages.pp====>
class debian::base_packages {

        include debian::apt
        package  { "lsof": ensure => installed }
        <SNIP>
}

class {"debian::base_packages": stage => baseos }
<====end====>



But when I run the agent with noop:

notice: /Stage[main]/Debian::Base_packages/Package[lsof]/ensure: is
purged, should be present (noop)

The stage still shows as main.

What am I overlooking?

Thank you.
(sorry if this is a duplicate.)

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