aboutsummaryrefslogtreecommitdiff
path: root/manifests/git.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/git.pp')
-rw-r--r--manifests/git.pp16
1 files changed, 0 insertions, 16 deletions
diff --git a/manifests/git.pp b/manifests/git.pp
deleted file mode 100644
index 5a3763d..0000000
--- a/manifests/git.pp
+++ /dev/null
@@ -1,16 +0,0 @@
-# This class is the base for any other services handled by this module.
-
-class git {
- # Obsolete
- if !defined(Package['git-core']) {
- package { 'git-core':
- ensure => absent,
- }
- }
-
- if !defined(Package['git']) {
- package { 'git':
- ensure => latest,
- }
- }
-}