--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users...@googlegroups.com.
To post to this group, send email to puppet...@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.
Join us at PuppetConf 2014, September 23-24 in San Francisco
I didnt see "file" resource to deploy the file and then "exec" option on Puppet master. Is there any plugin I have to installed on Master & then these two options will bevisible on Puppet master dashboard. Or I have to do the changes in commandline.Seriousely, not aware which file to edit & move ahead. Need your help.
I have write the below script in puppet language on puppet master. Now wants to know that, I have to call this script to be excuted from puppet master on End points. How do I do that ?
Class users {file { '/opt/example.sh':
ensure => prsent,
content => "#!/bin/sh\mkdir /opt/test123\n",
mode => '0755',
}exec { "create test123":
command => '/opt/example.sh',
creates => '/opt/test123',
require => File['/opt/example.sh'],Do I have to place this script on end point if yes...if I place it on end point how do I call it from Puppet Master
What does this command domco exec run script='/opt/example/bin'