Browse Source

make the selfoss cronjob not clobber the owncloud cron job, and redirect the output to /dev/null so we don't get email about it

Bruce Spang 11 years ago
parent
commit
646618fcb8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      roles/news/tasks/selfoss.yml

+ 1
- 1
roles/news/tasks/selfoss.yml View File

35
   notify: restart apache
35
   notify: restart apache
36
 
36
 
37
 - name: Install selfoss cronjob
37
 - name: Install selfoss cronjob
38
-  cron: name="ownCloud" user="www-data" minute="*/5" job="curl -k 'https://{{ selfoss_domain }}/update'"
38
+  cron: name="selfoss" user="www-data" minute="*/5" job="curl -k 'https://{{ selfoss_domain }}/update' > /dev/null"

Loading…
Cancel
Save