You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
337 B
10 lines
337 B
- if:
|
|
- path: /etc/containers/systemd/configs/odoo-config.env
|
|
op: [created, updated]
|
|
run: systemctl restart odoo.target
|
|
timeout: 5m
|
|
- if:
|
|
- path: /etc/containers/systemd/configs/odoo-config.env
|
|
op: [removed]
|
|
run: /bin/sh -c 'if [ -f /etc/systemd/system/odoo.target ]; then systemctl stop odoo.target; fi'
|
|
timeout: 5m
|
|
|