Displaying 1 result from an estimated 1 matches for "mountit".
Did you mean:
mountig
2013 Sep 02
0
chaining of create_resources
Hi
I am using create_resource to create a dir and then mount it. I am using
two create_resources and want one to be completed 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...