style: make ansible-lint happy

This commit is contained in:
VC
2024-07-05 11:53:44 +02:00
parent 99cb02e92d
commit 4bbb789c77
13 changed files with 77 additions and 52 deletions

View File

@@ -3,7 +3,7 @@
- name: Create jackett user
ansible.builtin.user:
comment: jackett
home: "{{ jackett_home }}"
home: "{{ bittorrent_jackett_home }}"
name: jackett
password: '!'
shell: /bin/bash
@@ -11,7 +11,7 @@
- name: Unzip jackett
ansible.builtin.unarchive:
src: "{{ jackett_download_url }}"
src: "{{ bittorrent_jackett_download_url }}"
remote_src: true
dest: "/opt"
owner: jackett

View File

@@ -9,8 +9,8 @@ RestartSec=5
Type=simple
User=jackett
Group=jackett
WorkingDirectory={{ jackett_home }}
ExecStart=/bin/sh "{{ jackett_home }}/jackett_launcher.sh"
WorkingDirectory={{ bittorrent_jackett_home }}
ExecStart=/bin/sh "{{ bittorrent_jackett_home }}/jackett_launcher.sh"
TimeoutStopSec=30
[Install]

View File

@@ -1,5 +1,5 @@
---
jackett_version: "v0.21.1025"
jackett_download_url: "https://github.com/Jackett/Jackett/releases/download/{{ jackett_version }}/Jackett.Binaries.LinuxAMDx64.tar.gz"
jackett_home: "/opt/Jackett"
bittorrent_jackett_version: "v0.21.1025"
bittorrent_jackett_download_url: "https://github.com/Jackett/Jackett/releases/download/{{ bittorrent_jackett_version }}/Jackett.Binaries.LinuxAMDx64.tar.gz"
bittorrent_jackett_home: "/opt/Jackett"