diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-06-19 17:23:35 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-06-19 17:23:35 -0300 |
commit | 446a977b1d4af003c8d0439d25b5819265ce9749 (patch) | |
tree | fa752717193dcfda86e60a25c0a786767866bf8c | |
parent | 2f8c3ef206677dfdb4b3ee517149197f3d391e2b (diff) | |
download | puppet-git-446a977b1d4af003c8d0439d25b5819265ce9749.tar.gz puppet-git-446a977b1d4af003c8d0439d25b5819265ce9749.tar.bz2 |
Adds git::cgit
-rw-r--r-- | manifests/cgit.pp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/cgit.pp b/manifests/cgit.pp new file mode 100644 index 0000000..0430190 --- /dev/null +++ b/manifests/cgit.pp @@ -0,0 +1,7 @@ +# See http://git.ao2.it/gitweb_cgit_migration.git +# http://ao2.it/en/blog/2011/05/06/migrate-gitweb-cgit-url-rewrite-rules +class git::cgit { + package { 'cgit': + ensure => present, + } +} |