On Aug 10, 2011, at 9:52 AM, Daniel Pittman wrote: > On Wed, Aug 10, 2011 at 16:40, Craig White <craig.wh...@ttiltd.com> wrote: > >> Seems I don't quite understand how it's supposed to work >> At the moment, I have it inside a 'file' resource >> >> content => generate("/etc/puppet/scripts/ldap-add-host.sh $fqdn admins_all"), > > generate("/etc/puppet/scripts/ldap-add-hosh.sh", $fqdn, "admins_all") ---- that worked great but brings me to a place I can't figure out.
A file resource doesn't have 'unless' or 'onlyif' and thus it seems to execute every time. An exec resource doesn't have 'content' but does have command and 'unless' so it would seem exec would be a better way to go but... # Puppet maintained file /etc/puppet/deployment_files/ldap_admins_all exec{"/etc/puppet/deployment_files/ldap_admins_all": command => ['/bin/touch /etc/puppet/deployment_files/admins_all', generate("/etc/puppet/scripts/ldap-add-host.sh", $fqdn, "admins_all")], unless => "/bin/ls -l /etc/puppet/deployment_files/ldap_admins_all", require => Class["mod_puppet::deployment_files"], } gives me the error... err: Failed to apply catalog: private method `split' called for #<Array:0x4873be8> and I could pass an array to 'file' resource using content but not 'exec' resource using command ;-( Craig -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@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.