Files

14 lines
196 B
Bash
Raw Permalink Normal View History

2023-08-08 11:51:38 -07:00
#!/bin/bash
2023-08-10 12:25:43 -07:00
set -e
2023-08-08 11:51:38 -07:00
systemctl daemon-reload
systemctl enable pgcat
2023-08-10 12:25:43 -07:00
if ! id pgcat 2> /dev/null; then
useradd -s /usr/bin/false pgcat
fi
if [ -f /etc/pgcat.toml ]; then
systemctl start pgcat
fi