From 98573c0066af67a7cdfa2a2e225915ee39e7aaff Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Sun, 20 Nov 2022 21:51:08 +0000 Subject: [PATCH] Add moonlight role for Windows Role installs the [Moonlight](https://moonlight-stream.org/) game streaming client. --- roles/moonlight/tasks/Windows.yaml | 5 +++++ roles/moonlight/tasks/main.yaml | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 roles/moonlight/tasks/Windows.yaml create mode 100644 roles/moonlight/tasks/main.yaml diff --git a/roles/moonlight/tasks/Windows.yaml b/roles/moonlight/tasks/Windows.yaml new file mode 100644 index 0000000..3014a4f --- /dev/null +++ b/roles/moonlight/tasks/Windows.yaml @@ -0,0 +1,5 @@ +--- +- name: install chocolatey package + win_chocolatey: + name: moonlight-qt + state: latest diff --git a/roles/moonlight/tasks/main.yaml b/roles/moonlight/tasks/main.yaml new file mode 100644 index 0000000..6853678 --- /dev/null +++ b/roles/moonlight/tasks/main.yaml @@ -0,0 +1,2 @@ +--- +- include_tasks: '{{ansible_os_family}}.yaml'