git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/Puppetfile
blob: ac90e14c64900ad6032d3f90564676170a09eda7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
forge "http://forge.puppetlabs.com"

# Modules from the Puppet Forge
# Note the versions are all set to :latest but after you've 
# installed you should change them to the exact version you want
mod "puppetlabs/inifile", :latest
mod "puppetlabs/stdlib", :latest
mod "puppetlabs/concat", :latest
mod "puppetlabs/ntp", :latest
mod "saz/ssh", :latest
mod "puppetlabs/postgresql",  '4.5.0'
mod "puppet/stash",           '1.3.0'
mod "puppetlabs/java",        '1.4.1'

#An example of using a specific forge module version instead of latest
#Notice the addition of single quotes
#mod "puppetlabs/inifile", '1.3.0'

# Modules from Github using various references
# Further examples: https://github.com/puppetlabs/r10k/blob/master/doc/puppetfile.mkd#examples
# update the tag to the most current release when implementing
mod 'hiera',
  :git => 'https://github.com/hunner/puppet-hiera',
  :tag => '1.3.1'

mod 'gitlab',
  :git => 'https://github.com/vshn/puppet-gitlab',
  :ref => '00397b86dfb3487d9df768cbd3698d362132b5bf'

mod 'r10k',
  :git => 'https://github.com/acidprime/r10k',
  :tag => 'v3.1.1'

mod 'gms',
  :git    => 'https://github.com/npwalker/abrader-gms',
  :branch => 'gitlab_disable_ssl_verify_support'
enable SSL on the zack/r10k webhookNick Walker 2015-10-292-2/+2 | | | * Add $::fqdn to post receive hook titleNick Walker 2015-10-281-3/+3 | | | | | | | | Also, change other references of $fqdn to $::fqdn | * remove environment_timeout =0 from environment.confNick Walker 2015-10-281-6/+0 | | | * disable SSL on the zack/r10k webhookNick Walker 2015-10-282-2/+1 | | | | | | | | | | The abrader/gms provider for gitlab doesn't support disabling ssl verification but will soon. | * enable ssl on the webhookNick Walker 2015-10-282-15/+17 | | | * make environment timeout setting refresh the puppet master serviceNick Walker 2015-10-261-0/+1 | | | * Fix the update-classes script and set appropriate perms on itNick Walker 2015-10-262-1/+2 | | | * Fix some embarassing typosNick Walker 2015-10-262-2/+2 | | | * Configure the MoM to update the classifier after deploying codeNick Walker 2015-10-264-0/+36 | | | | | | | | | | | | | | | | | | | | This entailed configring the classifier to never sync on a schedule. Changing environment_timeout to unlimited for all masters. Setting a postrun command for r10k that would update the class information in the classifier (the update-classes endpoint). | * add .gitignore to ignore my example hiera fileNick Walker 2015-10-221-0/+1 | | | * Multiple fixes to the READMENick Walker 2015-10-221-12/+12 | | | | | | | | | | | | fix step 16 and 17 being out of order fix a step that referred erronously to step 4 change the numbering to be reflective of actual numbering | * fix incorrect curly braceNick Walker 2015-10-221-1/+1 | | | * fix site.pp to not include a role that is emptyNick Walker 2015-10-221-1/+4 | | | * Clean up the README so it works from top to bottomNick Walker 2015-10-211-42/+20 | | | | | | | | | | I removed some extraneos notes I had and added a few more bits of documentation. | * fix whitespaceNick Walker 2015-10-211-2/+2 | | | * Remove notes about making control-repo public