diff --git a/Puppetfile b/Puppetfile index 3eaee22..02e2c31 100644 --- a/Puppetfile +++ b/Puppetfile @@ -48,3 +48,7 @@ mod 'rampup_profile_puppetmaster', mod 'rampup_profile_gitlab', :git => 'https://github.com/PuppetLabs-RampUpProgram/RampUp_profile_gitlab', :branch => 'master' + +mod 'rampup_profile_stash', + :git => 'https://github.com/PuppetLabs-RampUpProgram/RampUp_profile_stash', + :branch => 'master' 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', - } - -}