forked from HawksRepos/PTS-Team
-
Notifications
You must be signed in to change notification settings - Fork 55
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
MrDoobPG
authored and
MrDoobPG
committed
Nov 16, 2019
1 parent
3d67c1a
commit f877376
Showing
2 changed files
with
11 additions
and
14 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,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 | ||
|
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,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 |