[Puppet Users] question with puppet

2012-11-08 Thread bobby38
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

[Puppet Users] error message with puppet

2012-11-08 Thread bobby38
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

[Puppet Users] installation of package to a different folder

2014-06-26 Thread bobby38
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

[Puppet Users] Re: installation of package to a different folder

2014-06-26 Thread bobby38
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

Re: [Puppet Users] installation of package to a different folder

2014-06-26 Thread bobby38
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

[Puppet Users] when I try to update /etc/sudoers in puppet master the files it doesnt get updated! please help!

2015-09-04 Thread bobby38
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