search for: module_label

Displaying 2 results from an estimated 2 matches for "module_label".

2011 Sep 28
6
I can't seem to create mountpoint and change permissions after mounting in 2.7.3
...quisite = '''' ) { # Load defaults require lvm::params # Check mountpath equals root $rootpath = $mountpath ? { ''/'' => undef, default => $mountpath, } # Create directory tree including subdirectories exec { "${lvm::params::module_label}_mkdir_${mountpath}/$ {mountpoint}": command => "mkdir -p ${mountpath}/${mountpoint}", onlyif => "test ! -d ${mountpath}/${mountpoint}", before => Mount["${rootpath}/${mountpoint}"], } if $requisite != '''' { Exec[&q...
2011 Oct 07
0
puppet 2.7.5 and augeas break grub.conf on RHEL5
Hi, I was running puppet (2.7.5) on a host which needed to have some settings changed in it''s /boot/grub/menu.lst file. This file is however a link to /boot/grub/grub.conf When I used augeas in puppet like shown below augeas { "${dom0::params::module_label}_menu.lst_memory": incl => ''/ boot/grub/menu.lst'', lens => ''Grub.lns'', changes => [ ''set title[1]/ kernel/dom0_mem 2G'', ''set title[last()]/kernel/dom0_mem 2G'', ], } it updated the menu.lst, but menu.lst is now a...