Skip to content

Commit aeb5a82

Browse files
committed
test: output log
1 parent 2ccdfae commit aeb5a82

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ Data type: `Boolean`
224224

225225
if true, install python-setuptools
226226

227-
Default value: `$facts['os']['family'] ? {'Archlinux' => true, default => false`
227+
Default value: `$facts['os']['family'] ? { 'Archlinux' => true, default => false`
228228

229229
##### <a name="-python--venv"></a>`venv`
230230

manifests/init.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
Stdlib::Absolutepath $anaconda_install_path = '/opt/python',
6363
Boolean $manage_scl = true,
6464
Optional[Python::Umask] $umask = undef,
65-
Boolean $manage_setuptools = $facts['os']['family'] ? {'Archlinux' => true, default => false,},
65+
Boolean $manage_setuptools = $facts['os']['family'] ? { 'Archlinux' => true, default => false, },
6666
) inherits python::params {
6767
$exec_prefix = $provider ? {
6868
'scl' => "/usr/bin/scl enable ${version} -- ",

manifests/pyvenv.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
}
9595

9696
exec { "python_virtualenv_${venv_dir}":
97-
command => "${virtualenv_cmd} --clear ${system_pkgs_flag} ${prompt_arg} ${venv_dir} && ${pip_cmd} --log ${venv_dir}/pip.log install ${pip_upgrade} && ${pip_cmd} --log ${venv_dir}/pip.log install --upgrade setuptools",
97+
command => "${virtualenv_cmd} --clear ${system_pkgs_flag} ${prompt_arg} ${venv_dir} && ${pip_cmd} --log ${venv_dir}/pip.log install ${pip_upgrade} && ${pip_cmd} --log ${venv_dir}/pip.log install --upgrade setuptools && cat ${venv_dir}/pip.log",
9898
user => $owner,
9999
creates => "${venv_dir}/bin/activate",
100100
path => $_path,

0 commit comments

Comments
 (0)