From d9897294a2618e4c4991c4fc1a91e43bb9d2d7cc Mon Sep 17 00:00:00 2001 From: db Date: Fri, 15 May 2015 23:53:47 -0300 Subject: update package name to gitolite3 --- manifests/gitolite.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'manifests') diff --git a/manifests/gitolite.pp b/manifests/gitolite.pp index 19474df..62b5d83 100644 --- a/manifests/gitolite.pp +++ b/manifests/gitolite.pp @@ -28,7 +28,7 @@ class gitolite inherits git { } # the needed packages - package { "gitolite": ensure => installed } + package { "gitolite3": ensure => installed } # make sure this is not installed package { "gitosis": ensure => purged } @@ -37,7 +37,7 @@ class gitolite inherits git { group { "gitolite": ensure => present, allowdupe => false, - require => Package["gitolite"], + require => Package["gitolite3"], } # alters the user's home dir -- cgit v1.2.3 From 76745776317ba0ad03563fc238ba258841d719ad Mon Sep 17 00:00:00 2001 From: drebs Date: Fri, 5 Jun 2015 15:47:14 -0300 Subject: change gitolite module name --- manifests/daemon.pp | 2 +- manifests/gitolite.pp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'manifests') diff --git a/manifests/daemon.pp b/manifests/daemon.pp index 546aae9..9a63d39 100644 --- a/manifests/daemon.pp +++ b/manifests/daemon.pp @@ -13,7 +13,7 @@ class git::daemon ( include gitosis } default: { - include gitolite + include git::gitolite } } diff --git a/manifests/gitolite.pp b/manifests/gitolite.pp index 62b5d83..e4e33d7 100644 --- a/manifests/gitolite.pp +++ b/manifests/gitolite.pp @@ -1,7 +1,7 @@ # This class handles a gitolite installation, with /var/git as the root for # git repositories. -class gitolite inherits git { +class git::gitolite inherits git { # directory for gitolite user and repositories file { "/var/git": ensure => directory, -- cgit v1.2.3 From 291638bbc9ff0fba3c018fa23f6e19aeb675bd7d Mon Sep 17 00:00:00 2001 From: drebs Date: Tue, 9 Jun 2015 14:40:05 -0300 Subject: update gitweb class name to git::gitweb --- manifests/gitweb.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manifests') diff --git a/manifests/gitweb.pp b/manifests/gitweb.pp index 4399592..3453169 100644 --- a/manifests/gitweb.pp +++ b/manifests/gitweb.pp @@ -1,6 +1,6 @@ # This class handles a gitweb installation. -class gitweb( +class git::gitweb( $protocol = hiera('git::web::protocol', 'git'), $hosting_domain = hiera('apache::site::domain', $::domain), $implementation = hiera('git::daemon::implementation', 'gitolite') -- cgit v1.2.3