From 9efe7485f35ce0d205969501a2b33d3a360b5850 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Sat, 29 Jan 2022 21:35:37 -0500 Subject: [PATCH] Manjaro install RDP Install rdp client remmina. Also reboot because freerdp doesn't like to load without a reboot. --- playbooks/manjaro.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/playbooks/manjaro.yaml b/playbooks/manjaro.yaml index 1d12523..b362df1 100644 --- a/playbooks/manjaro.yaml +++ b/playbooks/manjaro.yaml @@ -126,6 +126,13 @@ name: dnsutils state: present become: yes + - name: Ensure remmina (RDP) installed + community.general.pacman: + name: + - remmina + - freerdp + state: present + become: yes - name: Ensure docker installed community.general.pacman: name: @@ -337,3 +344,8 @@ - Unknown_Region - canonicalization - regions + + # Reboot + - name: Unconditionally reboot the machine with all defaults + reboot: + become: yes