mirror of
https://github.com/iiab/iiab.git
synced 2025-02-12 19:22:24 +00:00
Merge pull request #1061 from holta/transmission
Transmission (BitTorrent) network activity caused SLOW IIAB installs :/
This commit is contained in:
commit
bae3ef71ca
7 changed files with 110 additions and 109 deletions
|
@ -3,6 +3,12 @@
|
|||
- name: ...IS BEGINNING ======================================
|
||||
command: echo
|
||||
|
||||
- name: TRANSMISSION
|
||||
include_role:
|
||||
name: transmission
|
||||
when: transmission_install
|
||||
tags: transmission
|
||||
|
||||
- name: AWSTATS
|
||||
include_role:
|
||||
name: awstats
|
||||
|
|
|
@ -15,12 +15,6 @@
|
|||
when: calibreweb_install
|
||||
tags: calibre-web
|
||||
|
||||
- name: TRANSMISSION
|
||||
include_role:
|
||||
name: transmission
|
||||
when: transmission_install
|
||||
tags: transmission
|
||||
|
||||
- name: Recording STAGE 9 HAS COMPLETED ====================
|
||||
lineinfile:
|
||||
dest: /etc/iiab/iiab.env
|
||||
|
|
|
@ -36,9 +36,10 @@
|
|||
state: restarted
|
||||
when: transmission_enabled
|
||||
|
||||
- name: Add KA Lite torrent(s) to transmission-daemon's queue
|
||||
- name: Add PAUSED KA Lite torrent(s) to transmission-daemon's queue
|
||||
shell: >
|
||||
/usr/bin/transmission-remote
|
||||
--start-paused
|
||||
-n {{ transmission_username }}:{{ transmission_password }}
|
||||
-a http://pantry.learningequality.org/downloads/ka-lite/{{ transmission_kalite_version }}/content/ka-lite-0.17-resized-videos-{{ item }}.torrent
|
||||
with_items: "{{ transmission_kalite_languages }}"
|
||||
|
|
|
@ -327,6 +327,45 @@ sugarizer_port: 8089
|
|||
|
||||
# 8-MGMT-TOOLS
|
||||
|
||||
# Transmission is a BitTorrent downloader for large Content Packs etc
|
||||
transmission_install: False
|
||||
transmission_enabled: False
|
||||
|
||||
# Transmission download directory & general owner/group
|
||||
transmission_download_dir: "{{ content_base }}/transmission/" # /library/transmission/
|
||||
transmission_user: debian-transmission
|
||||
transmission_group: root
|
||||
|
||||
# Monitor downloads at http://box:9091 or http://box:9091/transmission using Admin/changeme
|
||||
transmission_http_port: 9091
|
||||
transmission_url : "/transmission/"
|
||||
transmission_peer_port: 51413
|
||||
|
||||
# Provision Transmission with torrent(s) from http://pantry.learningequality.org/downloads/ka-lite/0.17/content/
|
||||
transmission_provision: True
|
||||
transmission_kalite_version: 0.17
|
||||
|
||||
# A. Uncomment language(s) in /etc/iiab/local_vars.yml to download KA Lite videos to /library/transmission
|
||||
transmission_kalite_languages:
|
||||
- english
|
||||
#- french
|
||||
#- hindi
|
||||
#- portugal-portuguese
|
||||
#- brazilian-portuguese
|
||||
#- spanish
|
||||
#- swahili
|
||||
# B. Monitor BitTorrent downloads at http://box:9091 using Admin/changeme
|
||||
# until the download is confirmed complete (can take hours if not days!)
|
||||
# C. Carefully move all videos/thumbnails into /library/ka-lite/content
|
||||
# (DO NOT OVERWRITE SUBFOLDERS assessment, locale, srt !)
|
||||
# D. Log in to KA Lite at http://box:8008/updates/videos/ using Admin/changeme
|
||||
# then click "Scan content folder for videos" (can take many minutes!)
|
||||
# E. READ "KA Lite Administration: What tips & tricks exist?" AT http://FAQ.IIAB.IO
|
||||
|
||||
# Transmission administrative account
|
||||
transmission_username: Admin
|
||||
transmission_password: changeme
|
||||
|
||||
# AWStats - summarizes http access logs
|
||||
awstats_install: True
|
||||
awstats_enabled: False
|
||||
|
@ -380,45 +419,6 @@ calibreweb_port: 8083
|
|||
calibreweb_url: /books
|
||||
calibreweb_home: "{{ content_base }}/calibre-web" # /library/calibre-web
|
||||
|
||||
# Transmission is a BitTorrent downloader for large Content Packs etc
|
||||
transmission_install: False
|
||||
transmission_enabled: False
|
||||
|
||||
# Transmission download directory & general owner/group
|
||||
transmission_download_dir: "{{ content_base }}/transmission/" # /library/transmission/
|
||||
transmission_user: debian-transmission
|
||||
transmission_group: root
|
||||
|
||||
# Monitor downloads at http://box:9091 or http://box:9091/transmission using Admin/changeme
|
||||
transmission_http_port: 9091
|
||||
transmission_url : "/transmission/"
|
||||
transmission_peer_port: 51413
|
||||
|
||||
# Provision Transmission with torrent(s) from http://pantry.learningequality.org/downloads/ka-lite/0.17/content/
|
||||
transmission_provision: True
|
||||
transmission_kalite_version: 0.17
|
||||
|
||||
# A. Uncomment language(s) in /etc/iiab/local_vars.yml to download KA Lite videos to /library/transmission
|
||||
transmission_kalite_languages:
|
||||
- english
|
||||
#- french
|
||||
#- hindi
|
||||
#- portugal-portuguese
|
||||
#- brazilian-portuguese
|
||||
#- spanish
|
||||
#- swahili
|
||||
# B. Monitor BitTorrent downloads at http://box:9091 using Admin/changeme
|
||||
# until the download is confirmed complete (can take hours or days!)
|
||||
# C. Carefully move all videos/thumbnails into /library/ka-lite/content
|
||||
# (DO NOT OVERWRITE SUBFOLDERS assessment, locale, srt !)
|
||||
# D. Log in to KA Lite at http://box:8008/updates/videos/ using Admin/changeme
|
||||
# then click "Scan content folder for videos" (can take many minutes!)
|
||||
# E. READ "KA Lite Administration: What tips & tricks exist?" AT http://FAQ.IIAB.IO
|
||||
|
||||
# Transmission administrative account
|
||||
transmission_username: Admin
|
||||
transmission_password: changeme
|
||||
|
||||
|
||||
# TeamViewer - unmaintained (better to install from http://teamviewer.com or prep scripts at http://download.iiab.io)
|
||||
# teamviewer_install: False
|
||||
|
|
|
@ -186,6 +186,27 @@ sugarizer_enabled: True
|
|||
|
||||
# 8-MGMT-TOOLS
|
||||
|
||||
# BitTorrent downloader for large Content Packs etc
|
||||
transmission_install: False
|
||||
transmission_enabled: False
|
||||
# A. Uncomment language(s) to download KA Lite videos to /library/transmission
|
||||
# using http://pantry.learningequality.org/downloads/ka-lite/0.17/content/
|
||||
transmission_kalite_languages:
|
||||
- english
|
||||
#- french
|
||||
#- hindi
|
||||
#- portugal-portuguese
|
||||
#- brazilian-portuguese
|
||||
#- spanish
|
||||
#- swahili
|
||||
# B. Monitor BitTorrent downloads at http://box:9091 using Admin/changeme
|
||||
# until the download is confirmed complete (can take hours if not days!)
|
||||
# C. Carefully move all videos/thumbnails into /library/ka-lite/content
|
||||
# (DO NOT OVERWRITE SUBFOLDERS assessment, locale, srt !)
|
||||
# D. Log in to KA Lite at http://box:8008/updates/videos/ using Admin/changeme
|
||||
# then click "Scan content folder for videos" (can take many minutes!)
|
||||
# E. READ "KA Lite Administration: What tips & tricks exist?" AT http://FAQ.IIAB.IO
|
||||
|
||||
awstats_install: True
|
||||
awstats_enabled: True
|
||||
|
||||
|
@ -229,27 +250,6 @@ calibreweb_port: 8083
|
|||
calibreweb_url: /books
|
||||
calibreweb_home: "{{ content_base }}/calibre-web" # /library/calibre-web
|
||||
|
||||
# BitTorrent downloader for large Content Packs etc
|
||||
transmission_install: False
|
||||
transmission_enabled: False
|
||||
# A. Uncomment language(s) to download KA Lite videos to /library/transmission
|
||||
# using http://pantry.learningequality.org/downloads/ka-lite/0.17/content/
|
||||
transmission_kalite_languages:
|
||||
- english
|
||||
#- french
|
||||
#- hindi
|
||||
#- portugal-portuguese
|
||||
#- brazilian-portuguese
|
||||
#- spanish
|
||||
#- swahili
|
||||
# B. Monitor BitTorrent downloads at http://box:9091 using Admin/changeme
|
||||
# until the download is confirmed complete (can take hours or days!)
|
||||
# C. Carefully move all videos/thumbnails into /library/ka-lite/content
|
||||
# (DO NOT OVERWRITE SUBFOLDERS assessment, locale, srt !)
|
||||
# D. Log in to KA Lite at http://box:8008/updates/videos/ using Admin/changeme
|
||||
# then click "Scan content folder for videos" (can take many minutes!)
|
||||
# E. READ "KA Lite Administration: What tips & tricks exist?" AT http://FAQ.IIAB.IO
|
||||
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com or prep scripts at http://download.iiab.io)
|
||||
# teamviewer_install: False
|
||||
|
|
|
@ -186,6 +186,27 @@ sugarizer_enabled: True
|
|||
|
||||
# 8-MGMT-TOOLS
|
||||
|
||||
# BitTorrent downloader for large Content Packs etc
|
||||
transmission_install: False
|
||||
transmission_enabled: False
|
||||
# A. Uncomment language(s) to download KA Lite videos to /library/transmission
|
||||
# using http://pantry.learningequality.org/downloads/ka-lite/0.17/content/
|
||||
transmission_kalite_languages:
|
||||
- english
|
||||
#- french
|
||||
#- hindi
|
||||
#- portugal-portuguese
|
||||
#- brazilian-portuguese
|
||||
#- spanish
|
||||
#- swahili
|
||||
# B. Monitor BitTorrent downloads at http://box:9091 using Admin/changeme
|
||||
# until the download is confirmed complete (can take hours if not days!)
|
||||
# C. Carefully move all videos/thumbnails into /library/ka-lite/content
|
||||
# (DO NOT OVERWRITE SUBFOLDERS assessment, locale, srt !)
|
||||
# D. Log in to KA Lite at http://box:8008/updates/videos/ using Admin/changeme
|
||||
# then click "Scan content folder for videos" (can take many minutes!)
|
||||
# E. READ "KA Lite Administration: What tips & tricks exist?" AT http://FAQ.IIAB.IO
|
||||
|
||||
awstats_install: True
|
||||
awstats_enabled: True
|
||||
|
||||
|
@ -229,27 +250,6 @@ calibreweb_port: 8083
|
|||
calibreweb_url: /books
|
||||
calibreweb_home: "{{ content_base }}/calibre-web" # /library/calibre-web
|
||||
|
||||
# BitTorrent downloader for large Content Packs etc
|
||||
transmission_install: False
|
||||
transmission_enabled: False
|
||||
# A. Uncomment language(s) to download KA Lite videos to /library/transmission
|
||||
# using http://pantry.learningequality.org/downloads/ka-lite/0.17/content/
|
||||
transmission_kalite_languages:
|
||||
- english
|
||||
#- french
|
||||
#- hindi
|
||||
#- portugal-portuguese
|
||||
#- brazilian-portuguese
|
||||
#- spanish
|
||||
#- swahili
|
||||
# B. Monitor BitTorrent downloads at http://box:9091 using Admin/changeme
|
||||
# until the download is confirmed complete (can take hours or days!)
|
||||
# C. Carefully move all videos/thumbnails into /library/ka-lite/content
|
||||
# (DO NOT OVERWRITE SUBFOLDERS assessment, locale, srt !)
|
||||
# D. Log in to KA Lite at http://box:8008/updates/videos/ using Admin/changeme
|
||||
# then click "Scan content folder for videos" (can take many minutes!)
|
||||
# E. READ "KA Lite Administration: What tips & tricks exist?" AT http://FAQ.IIAB.IO
|
||||
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com or prep scripts at http://download.iiab.io)
|
||||
# teamviewer_install: False
|
||||
|
|
|
@ -186,6 +186,27 @@ sugarizer_enabled: False
|
|||
|
||||
# 8-MGMT-TOOLS
|
||||
|
||||
# BitTorrent downloader for large Content Packs etc
|
||||
transmission_install: False
|
||||
transmission_enabled: False
|
||||
# A. Uncomment language(s) to download KA Lite videos to /library/transmission
|
||||
# using http://pantry.learningequality.org/downloads/ka-lite/0.17/content/
|
||||
transmission_kalite_languages:
|
||||
- english
|
||||
#- french
|
||||
#- hindi
|
||||
#- portugal-portuguese
|
||||
#- brazilian-portuguese
|
||||
#- spanish
|
||||
#- swahili
|
||||
# B. Monitor BitTorrent downloads at http://box:9091 using Admin/changeme
|
||||
# until the download is confirmed complete (can take hours if not days!)
|
||||
# C. Carefully move all videos/thumbnails into /library/ka-lite/content
|
||||
# (DO NOT OVERWRITE SUBFOLDERS assessment, locale, srt !)
|
||||
# D. Log in to KA Lite at http://box:8008/updates/videos/ using Admin/changeme
|
||||
# then click "Scan content folder for videos" (can take many minutes!)
|
||||
# E. READ "KA Lite Administration: What tips & tricks exist?" AT http://FAQ.IIAB.IO
|
||||
|
||||
awstats_install: True
|
||||
awstats_enabled: True
|
||||
|
||||
|
@ -229,27 +250,6 @@ calibreweb_port: 8083
|
|||
calibreweb_url: /books
|
||||
calibreweb_home: "{{ content_base }}/calibre-web" # /library/calibre-web
|
||||
|
||||
# BitTorrent downloader for large Content Packs etc
|
||||
transmission_install: False
|
||||
transmission_enabled: False
|
||||
# A. Uncomment language(s) to download KA Lite videos to /library/transmission
|
||||
# using http://pantry.learningequality.org/downloads/ka-lite/0.17/content/
|
||||
transmission_kalite_languages:
|
||||
- english
|
||||
#- french
|
||||
#- hindi
|
||||
#- portugal-portuguese
|
||||
#- brazilian-portuguese
|
||||
#- spanish
|
||||
#- swahili
|
||||
# B. Monitor BitTorrent downloads at http://box:9091 using Admin/changeme
|
||||
# until the download is confirmed complete (can take hours or days!)
|
||||
# C. Carefully move all videos/thumbnails into /library/ka-lite/content
|
||||
# (DO NOT OVERWRITE SUBFOLDERS assessment, locale, srt !)
|
||||
# D. Log in to KA Lite at http://box:8008/updates/videos/ using Admin/changeme
|
||||
# then click "Scan content folder for videos" (can take many minutes!)
|
||||
# E. READ "KA Lite Administration: What tips & tricks exist?" AT http://FAQ.IIAB.IO
|
||||
|
||||
|
||||
# Unmaintained (better to install from http://teamviewer.com or prep scripts at http://download.iiab.io)
|
||||
# teamviewer_install: False
|
||||
|
|
Loading…
Reference in a new issue