diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2018-11-28 22:19:36 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2018-11-28 22:19:36 +0000 |
commit | 9fc671264764cd0765830572daa11574c92fdba8 (patch) | |
tree | 580da54b1f122edd844dd8bb9a3e6c1ab0c05156 /user/nextcloud/nextcloud.cron | |
parent | b0ec6a7873c7835965e2bb923e0d87ea345352d4 (diff) | |
parent | 020a30d93a101127fdd2f494026fc80c632ae728 (diff) | |
download | packages-9fc671264764cd0765830572daa11574c92fdba8.tar.gz packages-9fc671264764cd0765830572daa11574c92fdba8.tar.bz2 packages-9fc671264764cd0765830572daa11574c92fdba8.tar.xz packages-9fc671264764cd0765830572daa11574c92fdba8.zip |
Merge branch 'nextcloud' into 'master'
user/nextcloud: new package
See merge request !110
Diffstat (limited to 'user/nextcloud/nextcloud.cron')
-rw-r--r-- | user/nextcloud/nextcloud.cron | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/user/nextcloud/nextcloud.cron b/user/nextcloud/nextcloud.cron new file mode 100644 index 000000000..21a5b566a --- /dev/null +++ b/user/nextcloud/nextcloud.cron @@ -0,0 +1,6 @@ +#!/bin/sh + +# Run only when nextcloud service is started. +if rc-service nextcloud -q status >/dev/null 2>&1; then + su nextcloud -s /bin/sh -c 'php -f /usr/share/webapps/nextcloud/cron.php' +fi |