20 lines
235 B
Plaintext
Raw Normal View History

2017-12-19 13:53:30 +01:00
#!/sbin/openrc-run
2018-09-05 22:20:24 +02:00
description="Postgres container"
2017-12-19 13:53:30 +01:00
depend() {
2018-09-07 15:47:44 +02:00
need cgroups
2017-12-19 13:53:30 +01:00
}
start() {
2018-09-07 15:47:44 +02:00
lxc-start postgres
2017-12-19 13:53:30 +01:00
}
start_post() {
2018-09-06 14:20:30 +02:00
ewaitfile 60 /var/lib/lxc/postgres/delta0/run/postgresql/.s.PGSQL.5432
}
2017-12-19 13:53:30 +01:00
stop() {
2018-09-07 15:47:44 +02:00
lxc-stop postgres
2017-12-19 13:53:30 +01:00
}