Skip to content

Commit

Permalink
hrr
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDoobPG authored and MrDoobPG committed Nov 16, 2019
1 parent 3d67c1a commit f877376
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
13 changes: 6 additions & 7 deletions menu/traktarr/traktarr-list/prefillallow.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
#!/bin/bash
#
# Title: Traktarr auto deploy
# YML Author: Admin9705
# Mod from MrDoobPG for PTS
# GNU: General Public License v3.0
# Origin: https://github.com/l3uddz/plex_patrol
################################################################################

---
- hosts: localhost
gather_facts: false
tasks:

- cron:
name: Daily automatic allowed preconf lists for filling
special_time: 'daily'
job: 'bash /opt/plexguide/menu/traktarr/traktarr-list/traktarr.sh >/dev/null 2>&1'
state: present
- name: Daily automatic add preconf lists for filling
cron:
special_time: 'daily'
job: 'bash /opt/plexguide/menu/traktarr/traktarr-list/traktarr.sh >/dev/null 2>&1'
state: present

12 changes: 5 additions & 7 deletions menu/traktarr/traktarr-list/prefillremove.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
#!/bin/bash
#
# Title: Traktarr auto deploy
# YML Author: Admin9705
# Mod from MrDoobPG for PTS
# GNU: General Public License v3.0
# Origin: https://github.com/l3uddz/plex_patrol
################################################################################

---
- hosts: localhost
gather_facts: false
tasks:

- cron:
name: Daily automatic remove preconf lists for filling
special_time: 'daily'
job: 'bash /opt/plexguide/menu/traktarr/traktarr-list/traktarr.sh >/dev/null 2>&1'
state: absent
- name: Daily automatic remove preconf lists for filling
cron:
special_time: 'daily'
job: 'bash /opt/plexguide/menu/traktarr/traktarr-list/traktarr.sh >/dev/null 2>&1'
state: absent

0 comments on commit f877376

Please sign in to comment.