I have added a new folder to my /modules/backup called files
/modules/backup/files
i have verified the new files folder resides in puppet master and owned by
puppet and it has the right permission
when i source to the a file inside file folder
source => "puppet:///backup/files/foo",
i am gett
I have created a new folders and i am trying to source to files inside this
new directory
when i check inside puppet master server i can see my new folder with
correct permission and the files also
my source is as following:
source => "puppet:///backup/files/foo",
then i am getting this error m
Hello All,
I am trying to install jdk package to a different folder rather than the
default folder.
i am trying to install for instance to /operation/tools/jdk-1.7
is there anyway to do this in puppet?
Thanks and regards
Babak
--
You received this message because you are subscribed to the G
On Thursday, June 26, 2014 1:04:30 PM UTC-4, bobby38 wrote:
>
> Hello All,
>
> I am trying to install jdk package to a different folder rather than the
> default folder.
> i am trying to install for instance to /operation/tools/jdk-1.7
> is there anyway to do this in pup
then use the install_options attribute in puppet.
>
>
> http://docs.puppetlabs.com/references/latest/type.html#package-attribute-install_options
>
>
>
> *From:* bobby38
> *Sent:* Thursday, June 26, 2014 1:04 PM
> *To:* puppet...@googlegroups.com
> *Subjec
Hello All,
i have created a module called Sudoers here is the content of the init.pp
File { owner => "root", group => "root", mode => "0440" }
file {"/etc/sudoers":
ensure => "present",
content => template("sudoers/sudoers.erb"),
}
file