aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-12-30 22:35:24 -0200
committerSilvio Rhatto <rhatto@riseup.net>2017-12-30 22:35:24 -0200
commit153313ac72125d3e3ccc7fb4ffacc7a81a3c5a83 (patch)
tree6eb49440ebec92067b066fad59f94232045aea03
parenta27fc944b2e5dc8f70b0938f9e1099e5877646aa (diff)
downloadpuppet-git-153313ac72125d3e3ccc7fb4ffacc7a81a3c5a83.tar.gz
puppet-git-153313ac72125d3e3ccc7fb4ffacc7a81a3c5a83.tar.bz2
Adds python3-markdown dependency into git::cgit
-rw-r--r--manifests/cgit.pp6
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,
}