Skip to content

Commit 680bd8c

Browse files
committed
revert use ensure_package instead of package for python install (test)
1 parent b8c3741 commit 680bd8c

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

manifests/install.pp

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,10 @@
3636
}
3737

3838
if $python::manage_python_package {
39-
ensure_package({
40-
'python' => {
41-
ensure => $python::ensure
42-
}
43-
})
44-
# package { 'python':
45-
# ensure => $python::ensure,
46-
# name => $python,
47-
# }
39+
package { 'python':
40+
ensure => $python::ensure,
41+
name => $python,
42+
}
4843
}
4944

5045
case $python::provider {

0 commit comments

Comments
 (0)