Is there a way to override a schedule for a package if the package is
not installed?
class packages {
schedule { installs:
range => "2-4",
period => daily,
repeat => 1,
}
package { openssh:
ensure => latest,
schedule => installs,
}
}
I dont want to check if openssh is the latest package everytime puppet
runs; but I do want it installed if it is not already installed
regardless of the schedule.
Anyway to do this?
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en.