recuperar los permisos al iniciar

This commit is contained in:
fauno 2019-04-20 12:28:02 -03:00
parent c3fdfa960d
commit 899494d4fb
No known key found for this signature in database
GPG Key ID: 456032D717A4CD9C
1 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,13 @@
check program chown
with path "/bin/chown -R app:www-data /srv/http/data"
every 1 cycles
if status = 0 then unmonitor
check program chmod
with path "/bin/chmod -R u=rwX,g=,o= /srv/http/data"
every 1 cycles
if status = 0 then unmonitor
check process api with pidfile /srv/http/tmp/puma.pid
start program = "/usr/bin/entrypoint api" as uid app
stop program = "/bin/sh -c 'cat /srv/http/tmp/puma.pid | xargs kill'"