-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Robert Baker
committed
Feb 12, 2019
1 parent
c4c1ca5
commit a83a2a3
Showing
1 changed file
with
11 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,37 @@ | ||
#!/bin/bash | ||
# | ||
# Title: PlexGuide (Reference Title File) | ||
# Author(s): Admin9705 - Deiteq | ||
# Author(s): Admin9705 | ||
# URL: https://plexguide.com - http://github.plexguide.com | ||
# GNU: General Public License v3.0 | ||
################################################################################ | ||
--- | ||
- cron: | ||
- name: Remove old NZBGET job | ||
cron: | ||
name: Build a Cron Job - NZBGET | ||
special_time: "hourly" | ||
job: "bash /opt/plexguide/menu/roles/autodelete/scripts/nzbget.sh" | ||
state: absent | ||
ignore_errors: yes | ||
|
||
- cron: | ||
- name: Remove old SABNZBD job | ||
cron: | ||
name: Build a Cron Job - SABNZBD | ||
special_time: "hourly" | ||
job: "bash /opt/plexguide/menu/roles/autodelete/scripts/sabnzbd.sh" | ||
state: absent | ||
ignore_errors: yes | ||
|
||
- cron: | ||
- name: Remove old DELUGE job | ||
cron: | ||
name: Build a Cron Job - DELUGE | ||
special_time: 'hourly' | ||
job: "bash /opt/plexguide/menu/roles/autodelete/scripts/deluge.sh" | ||
state: absent | ||
ignore_errors: yes | ||
|
||
- cron: | ||
- name: Remove old RUTORRENT job | ||
cron: | ||
name: Build a Cron Job - RUTORRENT | ||
special_time: 'hourly' | ||
job: "bash /opt/plexguide/menu/roles/autodelete/scripts/rutorrent.sh" | ||
state: absent | ||
ignore_errors: yes | ||
|
||
- cron: | ||
- name: Remove old QBITTORRENT job | ||
cron: | ||
name: Build a Cron Job - QBITTORRENT | ||
special_time: 'hourly' | ||
job: "bash /opt/plexguide/menu/roles/autodelete/scripts/qbittorrent.sh" | ||
state: absent | ||
ignore_errors: yes |