diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-06-19 22:30:53 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-06-19 22:30:53 -0300 |
commit | 4fd6d4d1ae74fb2f53d3bb986691a5b0f87e1cd1 (patch) | |
tree | dabd0889f50350fe0d2dae9c627ceeeb5fac6272 | |
parent | 9d46b37d4e31e5f96d4788f720955e6b0bb09ea1 (diff) | |
download | puppet-git-4fd6d4d1ae74fb2f53d3bb986691a5b0f87e1cd1.tar.gz puppet-git-4fd6d4d1ae74fb2f53d3bb986691a5b0f87e1cd1.tar.bz2 |
Adds markdown into git::daemon
-rw-r--r-- | manifests/daemon.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/manifests/daemon.pp b/manifests/daemon.pp index 75c0af6..740a2ad 100644 --- a/manifests/daemon.pp +++ b/manifests/daemon.pp @@ -86,4 +86,10 @@ class git::daemon ( ensure => present, notify => Service['inetd'], } + + # See http://bastian.rieck.ru/blog/posts/2013/gitweb_readme_workflow/ + # https://stackoverflow.com/questions/8321649/gitweb-how-to-display-markdown-file-in-html-format-automatically-like-github + package { 'markdown': + ensure => present, + } } |