Added Prowlarr configuration #1
6 changed files with 31 additions and 9 deletions
|
@ -1,12 +1,13 @@
|
||||||
role-prowlarr
|
role-prowlarr
|
||||||
=========
|
=========
|
||||||
|
|
||||||
A brief description of the role goes here.
|
This role adds a prowlarr server and deploys existing configuration
|
||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
------------
|
------------
|
||||||
|
|
||||||
No requirements
|
certbot
|
||||||
|
nginx-ssl
|
||||||
|
|
||||||
Role Variables
|
Role Variables
|
||||||
--------------
|
--------------
|
||||||
|
@ -23,8 +24,8 @@ Example Playbook Template
|
||||||
|
|
||||||
Playbook creation should be handled by playbook-builder. To include role in a playbook, add one of these lines (changing version/branch as needed) to the template with other core entries:
|
Playbook creation should be handled by playbook-builder. To include role in a playbook, add one of these lines (changing version/branch as needed) to the template with other core entries:
|
||||||
|
|
||||||
role:mount:v1.0:core,mount
|
role:prowlarr:v1.0:workload,prowlarr
|
||||||
role:mount:testing:core,mount
|
role:prowlarr:testing:workload,prowlarr
|
||||||
|
|
||||||
License
|
License
|
||||||
-------
|
-------
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#SPDX-License-Identifier: MIT-0
|
#SPDX-License-Identifier: MIT-0
|
||||||
---
|
---
|
||||||
# defaults file for ${REPO_NAME}
|
# defaults file for role-prowlarr
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#SPDX-License-Identifier: MIT-0
|
#SPDX-License-Identifier: MIT-0
|
||||||
---
|
---
|
||||||
# handlers file for ${REPO_NAME}
|
# handlers file for role-prowlarr
|
||||||
|
|
|
@ -1,3 +1,24 @@
|
||||||
#SPDX-License-Identifier: MIT-0
|
#SPDX-License-Identifier: MIT-0
|
||||||
---
|
---
|
||||||
# tasks file for ${REPO_NAME}
|
# tasks file for role-prowlarr
|
||||||
|
- name: install prowlarr
|
||||||
|
ansible.builtin.package:
|
||||||
|
name: prowlarr
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: ensure prowlarr is running
|
||||||
|
service:
|
||||||
|
name: prowlarr
|
||||||
|
state: started
|
||||||
|
enabled: yes
|
||||||
|
|
||||||
|
- name: install flaresolverr
|
||||||
|
ansible.builtin.package:
|
||||||
|
name: flaresolverr
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: ensure flaresolverr is running
|
||||||
|
service:
|
||||||
|
name: flaresolverr
|
||||||
|
state: started
|
||||||
|
enabled: yes
|
|
@ -3,4 +3,4 @@
|
||||||
- hosts: localhost
|
- hosts: localhost
|
||||||
remote_user: root
|
remote_user: root
|
||||||
roles:
|
roles:
|
||||||
- ${REPO_NAME}
|
- role-prowlarr
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#SPDX-License-Identifier: MIT-0
|
#SPDX-License-Identifier: MIT-0
|
||||||
---
|
---
|
||||||
# vars file for ${REPO_NAME}
|
# vars file for role-prowlarr
|
||||||
|
|
Loading…
Add table
Reference in a new issue