Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
killlogs added
  • Loading branch information
MrDoobPG authored Oct 14, 2019
1 parent 1e530e5 commit 0a6c736
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions menu/prune/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,26 @@
job: 'jpurge 1>/dev/null 2>&1'
state: present
ignore_errors: yes

- cron:
name: Build a Cron Job - Update Weekly
special_time: 'weekly'
job: 'update 1>/dev/null 2>&1'
state: present
ignore_errors: yes

- cron:
name: Build a Cron Job - remove logs after reboot
special_time: 'reboot'
job: 'kill_log 1>/dev/null 2>&1'
state: present
ignore_errors: yes

- cron:
name: Build a Cron Job - remove logs daily
special_time: 'daily'
job: 'killlog 1>/dev/null 2>&1'
state: present
ignore_errors: yes


0 comments on commit 0a6c736

Please sign in to comment.