Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions vagrant_support/cron.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,51 @@
- name: set cron mailto
cron:
name: set cron mailto

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It bugs me that they can't inherit the name from the parent, but I guess that's how ansible is.

env: yes
name: MAILTO
value: vagrant@localhost

- name: cron remove-idle-group-members
cron:
name: cron remove-idle-group-members
hour: 7
minute: 0
job: 'cd /vagrant; ./scripts/remove_idle_group_members.pl'

- name: cron collectstats
cron:
name: cron collectstats
hour: 7
minute: 0
job: 'cd /vagrant; ./collectstats.pl'


- name: cron whine
cron:
name: cron whine
user: apache
minute: '*/15'
job: 'cd /vagrant; ./whine.pl'

- name: cron clean-bug-user-last-visit
cron:
name: cron clean-bug-user-last-visit
user: apache
hour: 7
minute: 0
job: 'cd /vagrant; ./clean-bug-user-last-visit.pl'

- name: request nagger
cron:
name: request nagger
user: apache
hour: 7
minute: 30
job: 'cd /vagrant; ./extensions/RequestNagger/bin/send-request-nags.pl'

- name: userprofile
cron:
name: userprofile
user: apache
hour: 7
minute: 30
Expand Down