I'd like to use puppet to manage some cron jobs. Unfortunately, I do not
have cron installed on my servers. So, I'd like to use puppet to install
cron. Unfortunately, this doesn't seem to work. Puppet complains about
the lack of provider before it runs down the dependencies. For example,
this ought complain about the lack of package, or install it:
r...@puppet-test:~# cat /var/tmp/puppet-cron.pp
package{ "anacron":
ensure => "latest",
}
cron {"puppet cron test":
command => "echo test",
hour => 0,
user => "root",
require => Package["anacron"],
}
r...@puppet-test:~# puppet /var/tmp/puppet-cron.pp
sh: Syntax error: Bad fd number
sh: Syntax error: Bad fd number
err: Could not create puppet cron test: Could not find a default
provider for cron
Could not find a default provider for cron
Any suggestions?
seph
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---