Skip to content

Commit

Permalink
fix jbops install
Browse files Browse the repository at this point in the history
  • Loading branch information
ahembree committed Dec 13, 2023
1 parent ff767c5 commit 98b6958
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions roles/hmsdocker/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,21 @@
when: container_enabled_homepage

- name: Ensure JBOPS if enabled
ansible.builtin.git:
repo: https://github.com/blacktwin/JBOPS
clone: true
dest: "{{ tautulli_jbops_install_path }}"
diff: false
changed_when: false
when: tautulli_jbops_enabled
block:
- name: Ensure global git config ignores dubious ownership permissions
community.general.git_config:
name: safe.directory
scope: global
value: "{{ tautulli_jbops_install_path }}"
- name: Ensure JBOPS repo
ansible.builtin.git:
repo: https://github.com/blacktwin/JBOPS
clone: true
dest: "{{ tautulli_jbops_install_path }}"
diff: false
changed_when: false


- name: Ensure env
ansible.builtin.template:
Expand Down

0 comments on commit 98b6958

Please sign in to comment.