We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e04b1df commit af2fbd8Copy full SHA for af2fbd8
manifests/pip.pp
@@ -67,6 +67,7 @@
67
$install_args = '',
68
$uninstall_args = '',
69
$timeout = 1800,
70
+ $log_dir = '/',
71
) {
72
73
# Parameter validation
@@ -79,7 +80,7 @@
79
80
}
81
82
$cwd = $virtualenv ? {
- 'system' => '/',
83
+ 'system' => $log_dir,
84
default => $virtualenv,
85
86
manifests/requirements.pp
@@ -65,7 +65,8 @@
65
$forceupdate = false,
66
$cwd = undef,
$extra_pip_args = '',
- $fix_requirements_owner = true
+ $fix_requirements_owner = true,
if $virtualenv == 'system' and ($owner != 'root' or $group != 'root') {
@@ -81,7 +82,7 @@
$rootdir = $virtualenv ? {
87
88
0 commit comments