mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-23 17:36:28 +00:00
10 lines
137 B
Bash
10 lines
137 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
systemctl daemon-reload
|
|
systemctl enable pgcat
|
|
|
|
if ! id pgcat 2> /dev/null; then
|
|
useradd -s /usr/bin/false pgcat
|
|
fi
|