server_maint 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitmodules +3 -0
- data/lib/cookbooks/postgresql/.gitignore +7 -0
- data/lib/cookbooks/postgresql/.ruby-version +1 -0
- data/lib/cookbooks/postgresql/LICENSE.txt +20 -0
- data/lib/cookbooks/postgresql/README.md +588 -0
- data/lib/cookbooks/postgresql/Rakefile +35 -0
- data/lib/cookbooks/postgresql/attributes/default.rb +365 -0
- data/lib/cookbooks/postgresql/definitions/pg_database.rb +61 -0
- data/lib/cookbooks/postgresql/definitions/pg_database_extensions.rb +67 -0
- data/lib/cookbooks/postgresql/definitions/pg_user.rb +45 -0
- data/lib/cookbooks/postgresql/files/default/pgdg.pref +3 -0
- data/lib/cookbooks/postgresql/metadata.rb +22 -0
- data/lib/cookbooks/postgresql/recipes/client.rb +8 -0
- data/lib/cookbooks/postgresql/recipes/contrib.rb +8 -0
- data/lib/cookbooks/postgresql/recipes/dbg.rb +8 -0
- data/lib/cookbooks/postgresql/recipes/default.rb +50 -0
- data/lib/cookbooks/postgresql/recipes/doc.rb +8 -0
- data/lib/cookbooks/postgresql/recipes/libpq.rb +9 -0
- data/lib/cookbooks/postgresql/recipes/postgis.rb +8 -0
- data/lib/cookbooks/postgresql/recipes/server.rb +118 -0
- data/lib/cookbooks/postgresql/templates/default/environment.erb +11 -0
- data/lib/cookbooks/postgresql/templates/default/pg_ctl.conf.erb +5 -0
- data/lib/cookbooks/postgresql/templates/default/pg_hba.conf.erb +100 -0
- data/lib/cookbooks/postgresql/templates/default/pg_ident.conf.erb +46 -0
- data/lib/cookbooks/postgresql/templates/default/postgresql.conf.custom.erb +10 -0
- data/lib/cookbooks/postgresql/templates/default/postgresql.conf.standard.erb +558 -0
- data/lib/cookbooks/postgresql/templates/default/start.conf.erb +9 -0
- data/lib/cookbooks/postgresql/test/.chef/knife.rb +2 -0
- data/lib/cookbooks/postgresql/test/support/Gemfile +5 -0
- data/lib/server_maint/version.rb +1 -1
- 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
|
data/lib/server_maint/version.rb
CHANGED
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.
|
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-
|
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: -
|
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: -
|
410
|
+
hash: -2580774400873308883
|
383
411
|
requirements: []
|
384
412
|
rubyforge_project:
|
385
413
|
rubygems_version: 1.8.23
|