provizioning 0.9.1 → 0.9.2
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.
- data/lib/provizioning/version.rb +1 -1
- data/puppet/modules/postgres/manifests/init.pp +25 -23
- metadata +2 -2
data/lib/provizioning/version.rb
CHANGED
@@ -13,40 +13,42 @@
|
|
13
13
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
14
14
|
|
15
15
|
class postgres {
|
16
|
-
|
16
|
+
if $operatingsystem == /(Darwin|FreeBSD)/ && $operatingsystemrelease < '12.04' {
|
17
|
+
include "postgres::$operatingsystem"
|
18
|
+
}
|
17
19
|
|
18
20
|
package { [postgresql]: ensure => installed }
|
19
21
|
package { [libpq-dev]: ensure => installed }
|
20
22
|
|
21
23
|
service { "postgresql":
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
24
|
+
ensure => running,
|
25
|
+
enable => true,
|
26
|
+
hasstatus => true,
|
27
|
+
subscribe => [Package[postgresql]],
|
28
|
+
require => [File['/etc/apt/sources.list.d/postgres.list']]
|
27
29
|
}
|
28
30
|
|
29
31
|
class ubuntu {
|
30
32
|
include apt
|
31
33
|
|
32
|
-
|
33
|
-
|
34
|
-
|
34
|
+
exec {"get-postgres-apt-key":
|
35
|
+
command => "apt-key adv --keyserver keyserver.ubuntu.com --recv 8683D8A2"
|
36
|
+
}
|
35
37
|
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
38
|
+
file {"/etc/apt/sources.list.d/postgres.list":
|
39
|
+
ensure => present,
|
40
|
+
owner => root,
|
41
|
+
group => root,
|
42
|
+
content => $operatingsystemrelease ? {
|
43
|
+
'10.04' => 'deb http://ppa.launchpad.net/pitti/postgresql/ubuntu lucid main',
|
44
|
+
'11.04' => 'deb http://ppa.launchpad.net/pitti/postgresql/ubuntu natty main',
|
45
|
+
},
|
46
|
+
require => Exec["get-postgres-apt-key"],
|
47
|
+
}
|
46
48
|
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
49
|
+
exec {"update apt to find postgres":
|
50
|
+
command => '/usr/bin/apt-get -y update',
|
51
|
+
require => File['/etc/apt/sources.list.d/postgres.list'],
|
52
|
+
}
|
51
53
|
}
|
52
54
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: provizioning
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.2
|
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: 2012-08-
|
12
|
+
date: 2012-08-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: capistrano
|