aboutsummaryrefslogtreecommitdiff
path: root/manifests/gitosis.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/gitosis.pp')
-rw-r--r--manifests/gitosis.pp26
1 files changed, 0 insertions, 26 deletions
diff --git a/manifests/gitosis.pp b/manifests/gitosis.pp
deleted file mode 100644
index 168e2a2..0000000
--- a/manifests/gitosis.pp
+++ /dev/null
@@ -1,26 +0,0 @@
-# This class handles a gitosis installation, with /var/git as the root for
-# git repositories.
-
-class git::gitosis inherits git {
- # the needed packages
- package { "gitosis": ensure => installed }
-
- # make sure this is not installed
- package { "gitolite": ensure => purged }
-
- # tries to get rid of ugly directory structure
- file { "/srv/gitosis":
- ensure => absent,
- force => true,
- backup => false,
- require => User["git"],
- }
-
- # we also don't need /var/gitosis
- file { "/var/gitosis":
- ensure => absent,
- force => true,
- backup => false,
- require => User["git"],
- }
-}