blob: bcaf8141711fe17d2748e5073e7e85102f300502 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# systemd service for managing all PostgreSQL clusters on the system. This
# service is actually a systemd target, but we are using a service since
# targets cannot be reloaded.
[Unit]
Description=PostgreSQL RDBMS
[Service]
Type=oneshot
ExecStart=/bin/true
ExecReload=/bin/true
RemainAfterExit=on
[Install]
WantedBy=multi-user.target
|