diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-12-30 22:35:24 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-12-30 22:35:24 -0200 |
commit | 153313ac72125d3e3ccc7fb4ffacc7a81a3c5a83 (patch) | |
tree | 6eb49440ebec92067b066fad59f94232045aea03 | |
parent | a27fc944b2e5dc8f70b0938f9e1099e5877646aa (diff) | |
download | puppet-git-153313ac72125d3e3ccc7fb4ffacc7a81a3c5a83.tar.gz puppet-git-153313ac72125d3e3ccc7fb4ffacc7a81a3c5a83.tar.bz2 |
Adds python3-markdown dependency into git::cgit
-rw-r--r-- | manifests/cgit.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/cgit.pp b/manifests/cgit.pp index ac676ff..9c1c710 100644 --- a/manifests/cgit.pp +++ b/manifests/cgit.pp @@ -12,13 +12,13 @@ class git::cgit( } } - # Old synthax highlighting dependency - #package { 'python-pygments': + # Old python2 dependencies + #package { [ 'python-pygments', 'python-markdown' ]: # ensure => present, #} # For synthax highlighting - package { 'python3-pygments': + package { [ 'python3-pygments', 'python3-markdown' ]: ensure => present, } |