git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/site/profile/manifests/stash.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/stash.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/stash.pp')
-rw-r--r--site/profile/manifests/stash.pp28
1 files changed, 0 insertions, 28 deletions
diff --git a/site/profile/manifests/stash.pp b/site/profile/manifests/stash.pp
deleted file mode 100644
index 18b0468..0000000
--- a/site/profile/manifests/stash.pp
+++ /dev/null
@@ -1,28 +0,0 @@
-class profile::stash {
-
- class { 'java' :
- version => present,
- } ->
-
- class { 'postgresql::globals':
- manage_package_repo => true,
- version => '9.4',
- }->
- class { 'postgresql::server': } ->
-
- postgresql::server::db { 'stash':
- user => 'stash',
- password => postgresql_password('stash', 'password'),
- } ->
-
- class { 'stash':
- javahome => '/etc/alternatives/java_sdk',
- #dev.mode grants a 24-hour license for testing
- java_opts => '-Datlassian.dev.mode=true',
- }
-
- file { '/opt/puppetlabs/bin/stash_mco.rb':
- source => 'puppet:///modules/r10k/stash_mco.rb',
- }
-
-}