Tobias Reisinger
4104057771
roles/ and inventory/ are now in playbooks/ also fixed issues reported by ansible-lint
16 lines
291 B
Text
Executable file
16 lines
291 B
Text
Executable file
#!/usr/bin/env sh
|
|
|
|
domain="db.serguzim.me"
|
|
|
|
_install() {
|
|
install --owner=postgres --group=postgres --mode=600 \
|
|
"$CERTIFICATES_PATH/$domain.$1" \
|
|
"/var/lib/postgres/data/server.$1"
|
|
}
|
|
|
|
_install crt
|
|
_install key
|
|
|
|
sudo -u postgres pg_ctl -D /var/lib/postgres/data/ reload
|
|
|
|
# vim: ft=sh
|