git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/site/profile/manifests/gitlab.pp
diff options
context:
space:
mode:
authormail_redacted_for_web 2016-03-29 16:22:26 -0700
committermail_redacted_for_web 2016-03-29 16:22:26 -0700
commit6a44737d043f4140ab0116f619f79f913701df4c (patch)
treeea493c5fcbe965c7379ea806d83f217388023242 /site/profile/manifests/gitlab.pp
parent55f983ffc9e6e92113ceea0bc51efb6b69d32f13 (diff)
parentb3519dd48cebfcdbf1dea4b42e8857e21e6f05a2 (diff)
downloadcontrol-repo-template-6a44737d043f4140ab0116f619f79f913701df4c.tar.bz2
Merge pull request #28 from npwalker/move_profiles_out_into_their_own_modules
Move profiles out into their own modules
Diffstat (limited to 'site/profile/manifests/gitlab.pp')
-rw-r--r--site/profile/manifests/gitlab.pp24
1 files changed, 0 insertions, 24 deletions
diff --git a/site/profile/manifests/gitlab.pp b/site/profile/manifests/gitlab.pp
deleted file mode 100644
index 72c57e5..0000000
--- a/site/profile/manifests/gitlab.pp
+++ /dev/null
@@ -1,24 +0,0 @@
-class profile::gitlab {
-
- file { ['/etc/gitlab', '/etc/gitlab/ssl'] :
- ensure => directory,
- }
-
- file { "/etc/gitlab/ssl/${::fqdn}.key" :
- ensure => file,
- source => "${::settings::privatekeydir}/${::trusted['certname']}.pem",
- notify => Exec['gitlab_reconfigure'],
- }
-
- file { "/etc/gitlab/ssl/${::fqdn}.crt" :
- ensure => file,
- source => "${::settings::certdir}/${::trusted['certname']}.pem",
- notify => Exec['gitlab_reconfigure'],
- }
-
- class { 'gitlab':
- external_url => hiera( 'gms_server_url', "https://${::fqdn}") ,
- require => File["/etc/gitlab/ssl/${::fqdn}.key", "/etc/gitlab/ssl/${::fqdn}.key"],
- }
-
-}