server_maint 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. data/.gitmodules +3 -0
  2. data/lib/cookbooks/postgresql/.gitignore +7 -0
  3. data/lib/cookbooks/postgresql/.ruby-version +1 -0
  4. data/lib/cookbooks/postgresql/LICENSE.txt +20 -0
  5. data/lib/cookbooks/postgresql/README.md +588 -0
  6. data/lib/cookbooks/postgresql/Rakefile +35 -0
  7. data/lib/cookbooks/postgresql/attributes/default.rb +365 -0
  8. data/lib/cookbooks/postgresql/definitions/pg_database.rb +61 -0
  9. data/lib/cookbooks/postgresql/definitions/pg_database_extensions.rb +67 -0
  10. data/lib/cookbooks/postgresql/definitions/pg_user.rb +45 -0
  11. data/lib/cookbooks/postgresql/files/default/pgdg.pref +3 -0
  12. data/lib/cookbooks/postgresql/metadata.rb +22 -0
  13. data/lib/cookbooks/postgresql/recipes/client.rb +8 -0
  14. data/lib/cookbooks/postgresql/recipes/contrib.rb +8 -0
  15. data/lib/cookbooks/postgresql/recipes/dbg.rb +8 -0
  16. data/lib/cookbooks/postgresql/recipes/default.rb +50 -0
  17. data/lib/cookbooks/postgresql/recipes/doc.rb +8 -0
  18. data/lib/cookbooks/postgresql/recipes/libpq.rb +9 -0
  19. data/lib/cookbooks/postgresql/recipes/postgis.rb +8 -0
  20. data/lib/cookbooks/postgresql/recipes/server.rb +118 -0
  21. data/lib/cookbooks/postgresql/templates/default/environment.erb +11 -0
  22. data/lib/cookbooks/postgresql/templates/default/pg_ctl.conf.erb +5 -0
  23. data/lib/cookbooks/postgresql/templates/default/pg_hba.conf.erb +100 -0
  24. data/lib/cookbooks/postgresql/templates/default/pg_ident.conf.erb +46 -0
  25. data/lib/cookbooks/postgresql/templates/default/postgresql.conf.custom.erb +10 -0
  26. data/lib/cookbooks/postgresql/templates/default/postgresql.conf.standard.erb +558 -0
  27. data/lib/cookbooks/postgresql/templates/default/start.conf.erb +9 -0
  28. data/lib/cookbooks/postgresql/test/.chef/knife.rb +2 -0
  29. data/lib/cookbooks/postgresql/test/support/Gemfile +5 -0
  30. data/lib/server_maint/version.rb +1 -1
  31. metadata +32 -4
@@ -0,0 +1,9 @@
1
+ # Automatic startup configuration
2
+ # auto: automatically start/stop the cluster in the init script
3
+ # manual: do not start/stop in init scripts, but allow manual startup with
4
+ # pg_ctlcluster
5
+ # disabled: do not allow manual startup with pg_ctlcluster (this can be easily
6
+ # circumvented and is only meant to be a small protection for
7
+ # accidents).
8
+
9
+ auto
@@ -0,0 +1,2 @@
1
+ cache_type "BasicFile"
2
+ cache_options(:path => "#{ENV["HOME"]}/.chef/checksums")
@@ -0,0 +1,5 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "rake"
4
+ gem "foodcritic"
5
+ gem "chef", "~> 10.12.0"
@@ -1,3 +1,3 @@
1
1
  module ServerMaint
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: server_maint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-24 00:00:00.000000000 Z
12
+ date: 2013-02-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -297,6 +297,34 @@ files:
297
297
  - lib/cookbooks/php-fpm/README.md
298
298
  - lib/cookbooks/php-fpm/metadata.rb
299
299
  - lib/cookbooks/php-fpm/recipes/default.rb
300
+ - lib/cookbooks/postgresql/.gitignore
301
+ - lib/cookbooks/postgresql/.ruby-version
302
+ - lib/cookbooks/postgresql/LICENSE.txt
303
+ - lib/cookbooks/postgresql/README.md
304
+ - lib/cookbooks/postgresql/Rakefile
305
+ - lib/cookbooks/postgresql/attributes/default.rb
306
+ - lib/cookbooks/postgresql/definitions/pg_database.rb
307
+ - lib/cookbooks/postgresql/definitions/pg_database_extensions.rb
308
+ - lib/cookbooks/postgresql/definitions/pg_user.rb
309
+ - lib/cookbooks/postgresql/files/default/pgdg.pref
310
+ - lib/cookbooks/postgresql/metadata.rb
311
+ - lib/cookbooks/postgresql/recipes/client.rb
312
+ - lib/cookbooks/postgresql/recipes/contrib.rb
313
+ - lib/cookbooks/postgresql/recipes/dbg.rb
314
+ - lib/cookbooks/postgresql/recipes/default.rb
315
+ - lib/cookbooks/postgresql/recipes/doc.rb
316
+ - lib/cookbooks/postgresql/recipes/libpq.rb
317
+ - lib/cookbooks/postgresql/recipes/postgis.rb
318
+ - lib/cookbooks/postgresql/recipes/server.rb
319
+ - lib/cookbooks/postgresql/templates/default/environment.erb
320
+ - lib/cookbooks/postgresql/templates/default/pg_ctl.conf.erb
321
+ - lib/cookbooks/postgresql/templates/default/pg_hba.conf.erb
322
+ - lib/cookbooks/postgresql/templates/default/pg_ident.conf.erb
323
+ - lib/cookbooks/postgresql/templates/default/postgresql.conf.custom.erb
324
+ - lib/cookbooks/postgresql/templates/default/postgresql.conf.standard.erb
325
+ - lib/cookbooks/postgresql/templates/default/start.conf.erb
326
+ - lib/cookbooks/postgresql/test/.chef/knife.rb
327
+ - lib/cookbooks/postgresql/test/support/Gemfile
300
328
  - lib/cookbooks/runit/CHANGELOG.md
301
329
  - lib/cookbooks/runit/CONTRIBUTING
302
330
  - lib/cookbooks/runit/LICENSE
@@ -370,7 +398,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
370
398
  version: '0'
371
399
  segments:
372
400
  - 0
373
- hash: -2829715284035566063
401
+ hash: -2580774400873308883
374
402
  required_rubygems_version: !ruby/object:Gem::Requirement
375
403
  none: false
376
404
  requirements:
@@ -379,7 +407,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
379
407
  version: '0'
380
408
  segments:
381
409
  - 0
382
- hash: -2829715284035566063
410
+ hash: -2580774400873308883
383
411
  requirements: []
384
412
  rubyforge_project:
385
413
  rubygems_version: 1.8.23