postgres
This commit is contained in:
parent
54c60fc9b7
commit
88b706914f
8 changed files with 84 additions and 0 deletions
18
postgresql.service
Normal file
18
postgresql.service
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# postgresql.service is the meta unit for managing all PostgreSQL clusters on
|
||||
# the system at once. Conceptually, this unit is more like a systemd target,
|
||||
# but we are using a service since targets cannot be reloaded.
|
||||
#
|
||||
# The unit actually managing PostgreSQL clusters is postgresql@.service,
|
||||
# instantiated as postgresql@15-main.service for individual clusters.
|
||||
|
||||
[Unit]
|
||||
Description=PostgreSQL RDBMS
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/bin/true
|
||||
ExecReload=/bin/true
|
||||
RemainAfterExit=on
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
Loading…
Add table
Add a link
Reference in a new issue