Advertisement
Guest User

mikes yaml

a guest
Oct 28th, 2016
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.15 KB | None | 0 0
  1. templates:
  2.   TV:
  3.     inputs:
  4.       - rss:
  5.           url: https://eztv.ag/ezrss.xml
  6.           other_fields: ['torrent:magnetURI']
  7.           link: 'torrent:magnetURI'
  8.  
  9.     exec: /var/scripts/bash/noti.sh "Downloaing {{title}}"
  10.     verify_ssl_certificates: no
  11.     transmission:
  12.       host: localhost
  13.       port: 9091
  14.       username: trans
  15.       password: trans
  16.       path: "{{path}}"
  17.   MOVIE:
  18.     inputs:
  19.       - rss:
  20.           url: https://yts.ag/rss/0/1080p/all/0
  21.     exec: /var/scripts/bash/noti.sh "Downloaing {{title}}"  
  22.  
  23. tasks:
  24.   Movies:
  25.     template: MOVIE
  26.     quality:
  27.       - 1080p
  28.     verify_ssl_certificates: no
  29.     exists_movie:
  30.      - /media/secondary/Movies_1
  31.       - /media/tertiary/Movies_2
  32.       - /media/quanternary/Movies_3
  33.       - /media/quinary/Movies_4
  34.     accept_all: yes
  35.     proper_movies: yes
  36.     transmission:
  37.       host: 192.168.2.2
  38.       port: 9091
  39.       username: trans
  40.       password: trans
  41.       path: /media/quinary/Movies_4/
  42.  
  43.   Clean_Torrents:
  44.     clean_transmission:  
  45.       host: localhost
  46.       port: 9091
  47.       username: trans
  48.       password: trans  
  49.       finished_for: 1 hours
  50.  
  51.   Auto-1:
  52.     template: TV
  53.     configure_series:
  54.       from:
  55.         filesystem:
  56.           path:
  57.            - /media/secondary/Tv Shows_1
  58.           retrieve:
  59.            - dirs
  60.     set:
  61.       path: /media/secondary/Tv Shows_1/{{series_name}}/
  62.  
  63.   Auto-2:
  64.     template: TV
  65.     configure_series:
  66.       from:
  67.         filesystem:
  68.           path:
  69.            - /media/tertiary/Tv Shows_2
  70.           retrieve:
  71.            - dirs
  72.     set:
  73.       path: /media/tertiary/Tv Shows_2/{{series_name}}/
  74.  
  75.   Auto-3:
  76.     template: TV
  77.     configure_series:
  78.       from:
  79.         filesystem:
  80.           path:
  81.            - /media/quanternary/Tv Shows_3
  82.           retrieve:
  83.            - dirs
  84.     set:
  85.       path: /media/quanternary/Tv Shows_3/{{series_name}}/
  86.  
  87.   Auto-4:
  88.     template: TV
  89.     configure_series:
  90.       from:
  91.         filesystem:
  92.           path:
  93.            - /media/quinary/Tv Shows_4
  94.           retrieve:
  95.            - dirs
  96.     set:
  97.       path: /media/quinary/Tv Shows_4/{{series_name}}/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement