generated from gaoyang3513/SDK_RK3288
[Mod] First commit
This commit is contained in:
27
package/postgresql/postgresql.service
Normal file
27
package/postgresql/postgresql.service
Normal file
@ -0,0 +1,27 @@
|
||||
[Unit]
|
||||
Description=PostgreSQL database server
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=notify
|
||||
|
||||
# start timeout disabled because initdb may run a little
|
||||
# longer (eg. 5 minutes on RaspberryPi)
|
||||
TimeoutStartSec=0
|
||||
|
||||
User=postgres
|
||||
Group=postgres
|
||||
|
||||
StandardOutput=syslog
|
||||
StandardError=syslog
|
||||
SyslogIdentifier=postgres
|
||||
|
||||
ExecStartPre=/bin/sh -c "if [ ! -f /var/lib/pgsql/PG_VERSION ]; then /usr/bin/pg_ctl initdb -D /var/lib/pgsql; fi"
|
||||
ExecStart=/usr/bin/postgres -D /var/lib/pgsql
|
||||
ExecReload=/usr/bin/kill -HUP $MAINPID
|
||||
KillMode=mixed
|
||||
KillSignal=SIGINT
|
||||
TimeoutSec=0
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
Reference in New Issue
Block a user