diff --git a/.ansible/desktop.yaml b/.ansible/desktop.yaml index ee6a442..bb40947 100644 --- a/.ansible/desktop.yaml +++ b/.ansible/desktop.yaml @@ -3,5 +3,10 @@ roles: - role: linux_desktop when: ansible_system == 'Linux' + tags: + - linux - role: darwin_desktop when: ansible_system == 'Darwin' + tags: + - darwin + - osx diff --git a/.ansible/roles/common_desktop/tasks/firefox.yaml b/.ansible/roles/common_desktop/tasks/firefox.yaml index 11a2ab0..2bf248e 100644 --- a/.ansible/roles/common_desktop/tasks/firefox.yaml +++ b/.ansible/roles/common_desktop/tasks/firefox.yaml @@ -7,6 +7,7 @@ set_fact: firefox_path: '~/.mozilla/firefox' when: ansible_system == 'Linux' + - name: 'Firefox: Setting path (Darwin)' set_fact: firefox_path: '~/Library/Application Support/Firefox'