File tree 1 file changed +13
-12
lines changed
1 file changed +13
-12
lines changed Original file line number Diff line number Diff line change 11
11
define s3fs::mount (
12
12
$bucket ,
13
13
$mount_point ,
14
- $ensure = ' present' ,
15
- $default_acl = ' private' ,
16
- $uid = ' 0' ,
17
- $gid = ' 0' ,
18
- $mode = ' 0660' ,
19
- $atboot = true ,
20
- $fstype = ' fuse' ,
21
- $remounts = false ,
22
- $cache = ' /mnt/aws_s3_cache' ,
23
- $group = ' root' ,
24
- $owner = ' root' ,
14
+ $ensure = ' present' ,
15
+ $default_acl = ' private' ,
16
+ $uid = ' 0' ,
17
+ $gid = ' 0' ,
18
+ $mode = ' 0660' ,
19
+ $atboot = true ,
20
+ $fstype = ' fuse' ,
21
+ $remounts = false ,
22
+ $cache = ' /mnt/aws_s3_cache' ,
23
+ $group = ' root' ,
24
+ $owner = ' root' ,
25
+ $perm_recurse = true ,
25
26
) {
26
27
27
28
Class[' s3fs' ] -> S3fs::Mount[$name ]
46
47
File [$mount_point ] -> Mount[$mount_point ]
47
48
48
49
file { $mount_point:
49
- recurse => true ,
50
+ recurse => $perm_recurse ,
50
51
ensure => $ensure_dir ,
51
52
force => true ,
52
53
owner => $owner ,
You can’t perform that action at this time.
0 commit comments