From a125ec65a120ce23e4e692a48eaa169bc40e5506 Mon Sep 17 00:00:00 2001 From: Kumar Damani Date: Mon, 30 Jun 2025 17:11:10 -0400 Subject: ansible refactor to newer methods --- ansible/roles/torrents/meta/argument_specs.yaml | 25 +++++++++++++++++++++++++ ansible/roles/torrents/meta/main.yaml | 4 ++++ 2 files changed, 29 insertions(+) create mode 100644 ansible/roles/torrents/meta/argument_specs.yaml create mode 100644 ansible/roles/torrents/meta/main.yaml (limited to 'ansible/roles/torrents/meta') diff --git a/ansible/roles/torrents/meta/argument_specs.yaml b/ansible/roles/torrents/meta/argument_specs.yaml new file mode 100644 index 0000000..21691c7 --- /dev/null +++ b/ansible/roles/torrents/meta/argument_specs.yaml @@ -0,0 +1,25 @@ +--- + +argument_specs: + main: + short_description: Main entry point for the torrents role + description: + - This role installs the Transmission server as a systemd service. + author: + - Kumar Damani + options: + torrents_nas_mount_path: + type: 'str' + required: true + description: + - The path to the data on the NFS share. + torrents_rpc_username: + type: 'str' + required: true + description: + - The username. + torrents_rpc_password: + type: 'str' + required: true + description: + - The psswd for the user. diff --git a/ansible/roles/torrents/meta/main.yaml b/ansible/roles/torrents/meta/main.yaml new file mode 100644 index 0000000..93c21f6 --- /dev/null +++ b/ansible/roles/torrents/meta/main.yaml @@ -0,0 +1,4 @@ +--- + +dependencies: + - role: 'base' -- cgit v1.2.3