1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00

Minor syntax and cosmetics fixes

This commit is contained in:
Arky 2018-08-18 11:32:45 +07:00
parent e89f1eb9d7
commit 57f24c3eca
2 changed files with 9 additions and 9 deletions

View file

@ -12,8 +12,8 @@ Caution
Usage of transmission consumes significant Internet data and system resources. Usage of transmission consumes significant Internet data and system resources.
Caveat emptor! (That's Latin for "Buyer Beware"). Caveat emptor! (That's Latin for "Buyer Beware").
Access Access
------ ------
You can login transmission using its web interface http://box:9091/ with the following administration account. You can login transmission using its web interface http://box:9091/ with the following administration account.
@ -33,8 +33,8 @@ $ sudo systemctl stop transmission-daemon.service
$ sudo nano /etc/transmission-daemon/settings.json $ sudo nano /etc/transmission-daemon/settings.json
Adding torrents Adding torrents
--------------- ---------------
The transmission provisioning system is designed to add ka-Lite packages. You can also use transmission is The transmission provisioning system is designed to add ka-Lite packages. You can also use transmission is
download torrent using the Transmission web interface or using 'transmission-remote' program. download torrent using the Transmission web interface or using 'transmission-remote' program.
@ -45,8 +45,8 @@ Known Issues
Currently it is not possible to use random ports in the range 65535-49152. It is difficult to open multiple ports in IIAB firewall. Currently it is not possible to use random ports in the range 65535-49152. It is difficult to open multiple ports in IIAB firewall.
Troubleshooting Troubleshooting
---------------- ----------------
Please check if the transmission daemon is running: Please check if the transmission daemon is running:

View file

@ -9,7 +9,7 @@
with_items: with_items:
- "{{ transmission_download_dir }}" - "{{ transmission_download_dir }}"
- name: Install Transmission daemon and cli-tools. - name: Install Transmission daemon and its command line tools.
package: package:
name: "{{ item }}" name: "{{ item }}"
state: present state: present
@ -17,7 +17,7 @@
- transmission-daemon - transmission-daemon
- transmission-cli - transmission-cli
- name: Stop Transmission daemon before creating settings. - name: Stop Transmission daemon before modifying its settings.
service: service:
name: transmission-daemon name: transmission-daemon
state: stopped state: stopped
@ -39,7 +39,7 @@
enabled: yes enabled: yes
when: transmission_enabled when: transmission_enabled
- name: Add ka-lite torrents - name: Add ka-lite torrents to transmission daemon.
shell: /usr/bin/transmission-remote -a http://pantry.learningequality.org/downloads/ka-lite/{{ transmission_kalite_version }}/content/ka-lite-0.17-resized-videos-{{ transmission_kalite_languages | to_json }}.torrent shell: /usr/bin/transmission-remote -a http://pantry.learningequality.org/downloads/ka-lite/{{ transmission_kalite_version }}/content/ka-lite-0.17-resized-videos-{{ transmission_kalite_languages | to_json }}.torrent
with_items: "{{ transmission_kalite_languages }}" with_items: "{{ transmission_kalite_languages }}"
ignore_errors: yes ignore_errors: yes