Skip to content

Commit

Permalink
inventory: add back two missing download path vars
Browse files Browse the repository at this point in the history
  • Loading branch information
saltydk committed Jul 30, 2023
1 parent d20aa78 commit 0809353
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions inventories/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,20 @@ plex_account_is_enabled: "{{ (plex is defined) and
# Role Conditionals
################################

nzbs_downloads_path_is_defined: "{{ (downloads is defined) and
(downloads is not none) and
(downloads | trim | length > 0) and
(downloads_usenet_path is defined) and
(downloads_usenet_path is not none) and
(downloads_usenet_path | trim | length > 0) }}"

torrents_downloads_path_is_defined: "{{ (downloads is defined) and
(downloads is not none) and
(downloads | trim | length > 0) and
(downloads_torrents_path is defined) and
(downloads_torrents_path is not none) and
(downloads_torrents_path | trim | length > 0) }}"

feeder_mount_is_enabled: "{{ rclone.remotes | selectattr('remote', 'equalto', 'feeder') | list | count > 0 }}"

rclone_remote_is_defined: "{{ (rclone is defined) and
Expand Down

0 comments on commit 0809353

Please sign in to comment.