Skip to content

Commit

Permalink
plex: make plugins opt-in instead of opt-out
Browse files Browse the repository at this point in the history
  • Loading branch information
saltydk committed Jan 14, 2024
1 parent f5e60af commit fb9e15e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions roles/plex/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ plex_username: "{{ plex.user }}"
plex_password: "{{ plex.pass }}"
plex_open_main_ports: false
plex_open_local_ports: false
plex_plugin_webtools: true
plex_plugin_sub_zero: true
plex_plugin_webtools: false
plex_plugin_sub_zero: false
plex_insecure: false
plex_lan_ip: ""

Expand Down
2 changes: 1 addition & 1 deletion roles/sub_zero/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
- name: Install Sub-Zero Plugin
when: (not plex_plugin_subzero_bundle_status.stat.exists) or
(plex_plugin_subzero_bundle_status.stat.exists and plex_plugin_subzero_is_outdated) or
('plex-plugin-sub-zero-reinstall' in ansible_run_tags)
('plex-plugin-sub-zero-reinstall' in ansible_run_tags) or ('plex-plugin-sub-zero' in ansible_run_tags)
block:
- name: Check to see if {{ plex_name | title }} is running
when: ('plex-plugin-sub-zero' in ansible_run_tags) or ('plex-plugin-sub-zero-reinstall' in ansible_run_tags)
Expand Down

0 comments on commit fb9e15e

Please sign in to comment.