Displaying 1 result from an estimated 1 matches for "hiera_yaml".
2013 Sep 02
0
chaining of create_resources
...before other.
$mount_point = hiera(''test::mount_point'', [])
$defaults = {
''ensure'' => ''directory'',
}
$mountit = hiera(''test::mountit'')
create_resources (file, $mount_point, $defaults)
create_resources (mount, $mountit)
hiera_yaml is
test::mount_point:
''/local_area'':
owner: root
group: root
mode: 0644
test::mountit:
''/local_area'':
device : "mymachine:/software"
fstype : "nfs"
ensure : "mounted"...