Files
srv-pub/scr/2b_postgrest_service.sh

21 lines
577 B
Bash
Raw Normal View History

2025-10-26 21:56:12 -05:00
#!/bin/bash
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# config postgrest / frode klevstul / oct 2025
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2025-10-28 12:56:34 -05:00
if ! [ -f "/etc/systemd/system/postgrest.service" ]
then
2025-10-26 21:56:12 -05:00
2025-10-28 12:56:34 -05:00
useradd -M -U -d /nonexistent -s /usr/sbin/nologin postgrest
2025-10-26 21:56:12 -05:00
2025-10-28 12:56:34 -05:00
cd /tmp
wget https://gt.op.fo/fro/srv-pub/raw/branch/trunk/cfg/pgr/postgrest.service
cp postgrest.service /etc/systemd/system/
systemctl enable postgrest
systemctl start postgrest
systemctl status postgrest
fi