diff options
| author | Kumar Damani <me@kumardamani.net> | 2025-06-30 21:11:10 +0000 |
|---|---|---|
| committer | Kumar Damani <me@kumardamani.net> | 2025-06-30 21:11:10 +0000 |
| commit | a125ec65a120ce23e4e692a48eaa169bc40e5506 (patch) | |
| tree | c1c7ed19c1e00f33d5fe6d7caa3c622945b3c423 /ansible/roles/plex/meta | |
| parent | 7e603bcc92c7ddc19dbfb0c46434bc6847ad3781 (diff) | |
ansible refactor to newer methods
Diffstat (limited to 'ansible/roles/plex/meta')
| -rw-r--r-- | ansible/roles/plex/meta/argument_specs.yaml | 15 | ||||
| -rw-r--r-- | ansible/roles/plex/meta/main.yaml | 4 |
2 files changed, 19 insertions, 0 deletions
diff --git a/ansible/roles/plex/meta/argument_specs.yaml b/ansible/roles/plex/meta/argument_specs.yaml new file mode 100644 index 0000000..7c49c67 --- /dev/null +++ b/ansible/roles/plex/meta/argument_specs.yaml @@ -0,0 +1,15 @@ +--- + +argument_specs: + main: + short_description: Main entry point for the Plex role + description: + - This role installs the Plex Media Server as a systemd service. + author: + - Kumar Damani + options: + plex_nas_mount_path: + type: 'str' + required: true + description: + - The path to the data on the NFS share. diff --git a/ansible/roles/plex/meta/main.yaml b/ansible/roles/plex/meta/main.yaml new file mode 100644 index 0000000..93c21f6 --- /dev/null +++ b/ansible/roles/plex/meta/main.yaml @@ -0,0 +1,4 @@ +--- + +dependencies: + - role: 'base' |
