Skip to content

Commit 02515cb

Browse files
committed
INFRA-686: Make sure the files in the bin directory have execute permissions (Windows)
1 parent b5813e9 commit 02515cb

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

manifests/virtualenv.pp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,14 @@
184184
environment => $environment,
185185
before => File[$venv_dir],
186186
}
187+
->
188+
acl { "${venv_dir}/${bin_dir}":
189+
purge => true,
190+
permissions => [
191+
{ identity => 'Everyone', rights => ['execute'], affects => 'self_and_direct_children_only' },
192+
],
193+
inherit_parent_permissions => true,
194+
}
187195

188196
}
189197

0 commit comments

Comments
 (0)