diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-05-14 01:12:04 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-05-14 01:14:03 +0200 |
commit | 808f822507d47cc6e47da41e206ff9b942b506df (patch) | |
tree | 1854f0d3b061312810e635206a67a1c548070015 /modules/role/templates/cryptoportfolio | |
parent | b0439bf9b68d4e11a1511b289cba15ea10588d8d (diff) | |
download | Puppet-808f822507d47cc6e47da41e206ff9b942b506df.tar.gz Puppet-808f822507d47cc6e47da41e206ff9b942b506df.tar.zst Puppet-808f822507d47cc6e47da41e206ff9b942b506df.zip |
Move postgresql replication to its right place
Diffstat (limited to 'modules/role/templates/cryptoportfolio')
-rw-r--r-- | modules/role/templates/cryptoportfolio/postgresql_backup.conf.erb | 5 | ||||
-rw-r--r-- | modules/role/templates/cryptoportfolio/postgresql_backup@.service.erb | 34 |
2 files changed, 0 insertions, 39 deletions
diff --git a/modules/role/templates/cryptoportfolio/postgresql_backup.conf.erb b/modules/role/templates/cryptoportfolio/postgresql_backup.conf.erb deleted file mode 100644 index 860089b..0000000 --- a/modules/role/templates/cryptoportfolio/postgresql_backup.conf.erb +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | listen_addresses= '' | ||
2 | unix_socket_directories = '<%= @pg_path %>' | ||
3 | data_directory = '<%= @pg_path %>' | ||
4 | wal_level = logical | ||
5 | |||
diff --git a/modules/role/templates/cryptoportfolio/postgresql_backup@.service.erb b/modules/role/templates/cryptoportfolio/postgresql_backup@.service.erb deleted file mode 100644 index 245a1cb..0000000 --- a/modules/role/templates/cryptoportfolio/postgresql_backup@.service.erb +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | [Unit] | ||
2 | Description=PostgreSQL database server | ||
3 | After=network.target | ||
4 | |||
5 | [Service] | ||
6 | Type=forking | ||
7 | TimeoutSec=120 | ||
8 | User=postgres | ||
9 | Group=postgres | ||
10 | |||
11 | Environment=PGROOT=<%= @mountpoint %>/%i/postgresql | ||
12 | |||
13 | SyslogIdentifier=postgres | ||
14 | PIDFile=<%= @mountpoint %>/%i/postgresql/postmaster.pid | ||
15 | RuntimeDirectory=postgresql | ||
16 | RuntimeDirectoryMode=755 | ||
17 | |||
18 | ExecStartPre=/usr/bin/postgresql-check-db-dir ${PGROOT} | ||
19 | ExecStart= /usr/bin/pg_ctl -s -D ${PGROOT} start -w -t 120 | ||
20 | ExecReload=/usr/bin/pg_ctl -s -D ${PGROOT} reload | ||
21 | ExecStop= /usr/bin/pg_ctl -s -D ${PGROOT} stop -m fast | ||
22 | |||
23 | # Due to PostgreSQL's use of shared memory, OOM killer is often overzealous in | ||
24 | # killing Postgres, so adjust it downward | ||
25 | OOMScoreAdjust=-200 | ||
26 | |||
27 | # Additional security-related features | ||
28 | PrivateTmp=true | ||
29 | ProtectHome=true | ||
30 | ProtectSystem=full | ||
31 | NoNewPrivileges=true | ||
32 | |||
33 | [Install] | ||
34 | WantedBy=multi-user.target | ||