aboutsummaryrefslogtreecommitdiff
path: root/personal_infra/puppet/modules/postgres/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'personal_infra/puppet/modules/postgres/manifests')
-rw-r--r--personal_infra/puppet/modules/postgres/manifests/init.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/personal_infra/puppet/modules/postgres/manifests/init.pp b/personal_infra/puppet/modules/postgres/manifests/init.pp
new file mode 100644
index 00000000..5213db62
--- /dev/null
+++ b/personal_infra/puppet/modules/postgres/manifests/init.pp
@@ -0,0 +1,16 @@
+class postgres {
+ package {'pgdg-redhat-repo':
+ source => 'https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-x86_64/pgdg-redhat-repo-latest.noarch.rpm',
+ }
+ ->
+ package {'postgresql15-server':}
+ ->
+ exec {'/usr/pgsql-15/bin/postgresql-15-setup initdb':
+ creates => '/var/lib/pgsql/15/data/PG_VERSION',
+ }
+ ->
+ service {'postgresql-15':
+ ensure => running,
+ enable => true,
+ }
+}