17 lines
291 B
Text
17 lines
291 B
Text
|
#!/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
|