Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e0ab8fc777 | |||
| 3eb5fde403 | |||
| 3b13618eff | |||
| e49c4f80f3 | |||
| ccb83be886 |
13
.ansible-lint
Normal file
13
.ansible-lint
Normal file
@@ -0,0 +1,13 @@
|
||||
skip_list:
|
||||
- 'yaml'
|
||||
- 'risky-shell-pipe'
|
||||
- 'role-name'
|
||||
- 'no-handler'
|
||||
|
||||
kinds:
|
||||
- meta: "**/meta/main.yml"
|
||||
- tasks: "**/tasks/*.yml"
|
||||
- vars: "**/vars/*.yml"
|
||||
|
||||
exclude_paths:
|
||||
- "**/requirements.yml"
|
||||
2
.github/FUNDING.yml
vendored
Normal file
2
.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
github: equinoxel
|
||||
patreon: laurivan
|
||||
@@ -9,7 +9,7 @@ sudo: false
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- python-pip
|
||||
- python-pip
|
||||
|
||||
install:
|
||||
# Install ansible
|
||||
@@ -26,4 +26,4 @@ script:
|
||||
- ansible-playbook tests/test.yml -i tests/inventory --syntax-check
|
||||
|
||||
notifications:
|
||||
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|
||||
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|
||||
|
||||
5
CHANGELOG.md
Normal file
5
CHANGELOG.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
### 1.0.1 (2022-12-12)
|
||||
13
README.md
13
README.md
@@ -32,6 +32,7 @@ If you need to install the containers with a specific user/group ID, then define
|
||||
arrs_uid:
|
||||
arrs_gid:
|
||||
```
|
||||
|
||||
The role allows oyu to specify which components will be installed:
|
||||
|
||||
```yml
|
||||
@@ -71,6 +72,7 @@ You can specify the image version and the port exposed:
|
||||
radarr_image_version: 'latest'
|
||||
radarr_host_port: 7878
|
||||
```
|
||||
|
||||
You can also overwrite the location where radarr's configuration is stored (e.g. if you already have it installed and you want to use the Ansible role):
|
||||
|
||||
```yml
|
||||
@@ -96,6 +98,7 @@ You can specify the image version and the port exposed:
|
||||
sonarr_image_version: 'latest'
|
||||
sonarr_host_port: 8989
|
||||
```
|
||||
|
||||
You can also overwrite the location where sonarr's configuration is stored (e.g. if you already have it installed and you want to use the Ansible role):
|
||||
|
||||
```yml
|
||||
@@ -113,7 +116,7 @@ sonarr_series_volume: '/mnt/videos/Series'
|
||||
- Depending on your settings, it will also rename your current series
|
||||
- You need write access to that directory, so Sonarr can actually copy the files
|
||||
|
||||
# Lidarr
|
||||
### Lidarr
|
||||
|
||||
You can specify the image version and the port exposed:
|
||||
|
||||
@@ -121,11 +124,13 @@ You can specify the image version and the port exposed:
|
||||
lidarr_image_version: 'latest'
|
||||
lidarr_host_port: 8686
|
||||
```
|
||||
|
||||
You can also overwrite the location where lidarr's configuration is stored (e.g. if you already have it installed and you want to use the Ansible role):
|
||||
|
||||
```yml
|
||||
lidarr_config_volume: '{{ arrs_configuration_volume }}/lidarr'
|
||||
```
|
||||
|
||||
Lidarr needs a place to copy the downloaded music:
|
||||
|
||||
```yml
|
||||
@@ -143,7 +148,8 @@ lidarr_music_volumes:
|
||||
|
||||
The `path` is the actual directory where the collection is located and the `alias` is the internal mapping name in Docker.
|
||||
|
||||
# Jakett
|
||||
### Jakett
|
||||
|
||||
You can specify the image version, the port exposed and to autoupdate:
|
||||
|
||||
```yml
|
||||
@@ -151,6 +157,7 @@ jackett_image_version: 'latest'
|
||||
jackett_auto_update: true
|
||||
jackett_host_port: 9117
|
||||
```
|
||||
|
||||
You can also overwrite the location where jackett's configuration is stored (e.g. if you already have it installed and you want to use the Ansible role):
|
||||
|
||||
```yml
|
||||
@@ -173,6 +180,6 @@ You need a machine with docker and docker-compose installed.
|
||||
|
||||
MIT
|
||||
|
||||
## Author Information
|
||||
## Author Information
|
||||
|
||||
This role was created in 2022 by [Laur Ivan](https://www.laurivan.com).
|
||||
|
||||
@@ -10,10 +10,10 @@ arrs_setup_path: '~/arrs'
|
||||
arrs_uid:
|
||||
arrs_gid:
|
||||
|
||||
deluge_enabled: true
|
||||
radarr_enabled: true
|
||||
sonarr_enabled: true
|
||||
lidarr_enabled: true
|
||||
deluge_enabled: true
|
||||
radarr_enabled: true
|
||||
sonarr_enabled: true
|
||||
lidarr_enabled: true
|
||||
jackett_enabled: true
|
||||
|
||||
# Deluge torrent
|
||||
@@ -33,10 +33,10 @@ radarr_host_port: 7878
|
||||
|
||||
radarr_config_volume: '{{ arrs_configuration_volume }}/radarr'
|
||||
radarr_upload_volume: '/mnt/videos/Movies'
|
||||
radarr_library_volumes:
|
||||
- {path: '/mnt/video/Gold', alias: 'gold' }
|
||||
- {path: '/mnt/video/Current', alias: 'current' }
|
||||
- {path: '/mnt/video/Temporary', alias: 'temporary' }
|
||||
radarr_library_volumes:
|
||||
- {path: '/mnt/video/Gold', alias: 'gold'}
|
||||
- {path: '/mnt/video/Current', alias: 'current'}
|
||||
- {path: '/mnt/video/Temporary', alias: 'temporary'}
|
||||
|
||||
# Sonarr
|
||||
#
|
||||
@@ -45,10 +45,10 @@ sonarr_host_port: 8989
|
||||
|
||||
sonarr_config_volume: '{{ arrs_configuration_volume }}/sonarr'
|
||||
sonarr_upload_volume: '/mnt/videos/Series'
|
||||
sonarr_library_volumes:
|
||||
- {path: '/mnt/tv/Series', alias: 'series' }
|
||||
- {path: '/mnt/tv/Animation', alias: 'animation' }
|
||||
- {path: '/mnt/tv/SciFi', alias: 'scifi' }
|
||||
sonarr_library_volumes:
|
||||
- {path: '/mnt/tv/Series', alias: 'series'}
|
||||
- {path: '/mnt/tv/Animation', alias: 'animation'}
|
||||
- {path: '/mnt/tv/SciFi', alias: 'scifi'}
|
||||
|
||||
# Lidarr
|
||||
lidarr_image_version: 'latest'
|
||||
@@ -56,10 +56,10 @@ lidarr_host_port: 8686
|
||||
|
||||
lidarr_config_volume: '{{ arrs_configuration_volume }}/lidarr'
|
||||
lidarr_upload_volume: '/mnt/music/Reference'
|
||||
lidarr_library_volumes:
|
||||
- {path: '/mnt/music/Sonos', alias: 'sonos' }
|
||||
- {path: '/mnt/music/Audiophile', alias: 'audiophile' }
|
||||
- {path: '/mnt/music/Raw', alias: 'raw' }
|
||||
lidarr_library_volumes:
|
||||
- {path: '/mnt/music/Sonos', alias: 'sonos'}
|
||||
- {path: '/mnt/music/Audiophile', alias: 'audiophile'}
|
||||
- {path: '/mnt/music/Raw', alias: 'raw'}
|
||||
|
||||
# Jakett
|
||||
jackett_image_version: 'latest'
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
---
|
||||
# handlers file for arrs
|
||||
# handlers file for arrs
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
galaxy_info:
|
||||
author: Laur Ivan
|
||||
namespace: laurivan
|
||||
@@ -25,7 +26,7 @@ galaxy_info:
|
||||
versions:
|
||||
- all
|
||||
|
||||
galaxy_tags:
|
||||
galaxy_tags:
|
||||
- sonarr
|
||||
- lidarr
|
||||
- deluge
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
state: absent
|
||||
when: docker_compose_file.stat.exists
|
||||
become: false
|
||||
|
||||
|
||||
- name: Remove the docker-compose file
|
||||
ansible.builtin.file:
|
||||
path: "~/arrs/docker-compose.yml"
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
- name: "Include necessary variables"
|
||||
ansible.builtin.include_vars:
|
||||
file: "../../.env.yml"
|
||||
|
||||
|
||||
roles:
|
||||
- role: laurivan.arrs
|
||||
|
||||
|
||||
@@ -27,4 +27,4 @@ verifier:
|
||||
lint: |
|
||||
set -e
|
||||
yamllint .
|
||||
ansible-lint .
|
||||
ansible-lint .
|
||||
|
||||
@@ -8,28 +8,31 @@
|
||||
register: docker_sock_stat
|
||||
|
||||
- name: Create docker.sock
|
||||
raw: touch /var/run/docker.sock
|
||||
ansible.builtin.raw: touch /var/run/docker.sock
|
||||
become: true
|
||||
changed_when: false
|
||||
when: not docker_sock_stat.stat.exists
|
||||
|
||||
- name: Move docker.sock from tmp
|
||||
raw: mount --move /tmp/docker_mounted.sock /var/run/docker.sock
|
||||
ansible.builtin.raw: >
|
||||
mount --move /tmp/docker_mounted.sock /var/run/docker.sock
|
||||
become: true
|
||||
changed_when: false
|
||||
when: not docker_sock_stat.stat.exists
|
||||
|
||||
|
||||
- name: Update apt cache.
|
||||
apt: update_cache=yes cache_valid_time=600
|
||||
ansible.builtin.apt: update_cache=yes cache_valid_time=600
|
||||
when: ansible_os_family == 'Debian'
|
||||
|
||||
- name: Install python requests
|
||||
pip:
|
||||
name:
|
||||
ansible.builtin.pip:
|
||||
name:
|
||||
- requests
|
||||
- docker
|
||||
- docker-compose
|
||||
|
||||
- name: Install docker
|
||||
vars:
|
||||
docker_service_manage: false
|
||||
include_role:
|
||||
ansible.builtin.include_role:
|
||||
name: geerlingguy.docker
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
ansible.builtin.file:
|
||||
state: directory
|
||||
path: "{{ item }}"
|
||||
owner: "{% if arrs_uid %}{{ arrs_uid }}{% else %}{{ ansible_effective_user_id }}{%endif%}"
|
||||
group: "{% if arrs_gid %}{{ arrs_gid }}{% else %}{{ ansible_effective_group_id }}{%endif%}"
|
||||
owner: "{% if arrs_uid %}{{ arrs_uid }}{% else %}{{ ansible_effective_user_id }}{% endif %}"
|
||||
group: "{% if arrs_gid %}{{ arrs_gid }}{% else %}{{ ansible_effective_group_id }}{% endif %}"
|
||||
mode: "0750"
|
||||
with_items:
|
||||
- "{{ deluge_config_volume }}"
|
||||
@@ -34,8 +34,8 @@
|
||||
ansible.builtin.file:
|
||||
state: directory
|
||||
path: "{{ item }}"
|
||||
owner: "{% if arrs_uid %}{{ arrs_uid }}{% else %}{{ ansible_effective_user_id }}{%endif%}"
|
||||
group: "{% if arrs_gid %}{{ arrs_gid }}{% else %}{{ ansible_effective_group_id }}{%endif%}"
|
||||
owner: "{% if arrs_uid %}{{ arrs_uid }}{% else %}{{ ansible_effective_user_id }}{% endif %}"
|
||||
group: "{% if arrs_gid %}{{ arrs_gid }}{% else %}{{ ansible_effective_group_id }}{% endif %}"
|
||||
mode: "0750"
|
||||
with_items:
|
||||
- "{{ radarr_upload_volume }}"
|
||||
|
||||
@@ -5,4 +5,4 @@ PUID={{ arrs_uid }}
|
||||
{% endif %}
|
||||
{% if arrs_gid %}
|
||||
PGID={{ arrs_gid }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -5,4 +5,4 @@ PUID={{ arrs_uid }}
|
||||
{% endif %}
|
||||
{% if arrs_gid %}
|
||||
PGID={{ arrs_gid }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -4,4 +4,4 @@ PUID={{ arrs_uid }}
|
||||
{% endif %}
|
||||
{% if arrs_gid %}
|
||||
PGID={{ arrs_gid }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -5,4 +5,4 @@ PUID={{ arrs_uid }}
|
||||
{% endif %}
|
||||
{% if arrs_gid %}
|
||||
PGID={{ arrs_gid }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
- hosts: localhost
|
||||
remote_user: root
|
||||
roles:
|
||||
- arrs
|
||||
- arrs
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
---
|
||||
# vars file for arrs
|
||||
# vars file for arrs
|
||||
|
||||
Reference in New Issue
Block a user