diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2022-01-10 22:01:59 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2022-01-10 22:01:59 -0300 |
commit | baf006bc7234ef68479048798a72d02ca25abd32 (patch) | |
tree | 43fc6b3d0875a4bb70548048cca0d54b0bda05e5 | |
parent | c2543ddccf685e0e20d4073900a76924cecc682f (diff) | |
download | puppet-nodo-baf006bc7234ef68479048798a72d02ca25abd32.tar.gz puppet-nodo-baf006bc7234ef68479048798a72d02ca25abd32.tar.bz2 |
Fix: replace python-stemmer with python3-stemmer
-rw-r--r-- | manifests/utils/development/ide.pp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/manifests/utils/development/ide.pp b/manifests/utils/development/ide.pp index c5d3f3b..d01ab17 100644 --- a/manifests/utils/development/ide.pp +++ b/manifests/utils/development/ide.pp @@ -23,9 +23,9 @@ class nodo::utils::development::ide ( ensure => $ensure, } - # A suggested package of python-sphinx + # A suggested package of python3-sphinx package { [ - 'python-stemmer', + 'python3-stemmer', ]: ensure => present, } @@ -60,6 +60,9 @@ class nodo::utils::development::ide ( 'mr', 'python-sphinx', 'python-recommonmark', + + # Needed by python-sphinx + 'python-stemmer', ]: ensure => absent, } |