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
362 B
10 lines
362 B
- if:
|
|
- path: /etc/containers/systemd/configs/nextcloud-config.env
|
|
op: [created, updated]
|
|
run: systemctl restart nextcloud.target
|
|
timeout: 5m
|
|
- if:
|
|
- path: /etc/containers/systemd/configs/nextcloud-config.env
|
|
op: [removed]
|
|
run: /bin/sh -c 'if [ -f /etc/systemd/system/nextcloud.target ]; then systemctl stop nextcloud.target; fi'
|
|
timeout: 5m
|
|
|