From bb2cf61658552baf0a347064c914467dfc7d678c Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Fri, 6 Dec 2024 21:01:52 +0000 Subject: [PATCH] Don't install Cider on Windows Also add the `apple-music` role, although it currently isn't invoked as the `win_winget` module does not exist yet. --- roles/apple-music/tasks/main.yaml | 5 +++++ roles/cider/tasks/main.yaml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 roles/apple-music/tasks/main.yaml diff --git a/roles/apple-music/tasks/main.yaml b/roles/apple-music/tasks/main.yaml new file mode 100644 index 0000000..4c77089 --- /dev/null +++ b/roles/apple-music/tasks/main.yaml @@ -0,0 +1,5 @@ +--- +- name: install Apple Music from Microsoft Store + win_winget: + id: 9PFHDD62MXS1 + state: latest diff --git a/roles/cider/tasks/main.yaml b/roles/cider/tasks/main.yaml index a0a612f..d9ee0e0 100644 --- a/roles/cider/tasks/main.yaml +++ b/roles/cider/tasks/main.yaml @@ -6,7 +6,7 @@ when: ansible_os_family == 'Windows' win_chocolatey: name: Cider - state: latest + state: absent - name: install flatpak package when: ansible_os_family != 'Windows'