From d8c6433feab03e10a4e9b6cc393f088df276fc21 Mon Sep 17 00:00:00 2001 From: Julian Gethmann Date: Mon, 15 Apr 2019 11:09:25 +0200 Subject: [PATCH] Add remote desktop (remmina) role --- README.md | 12 +++++++----- hosts | 4 ++++ remmina.yml | 3 +++ roles/rdp/tasks/main.yml | 6 ++++++ sites.yml | 2 ++ 5 files changed, 22 insertions(+), 5 deletions(-) create mode 100644 remmina.yml create mode 100644 roles/rdp/tasks/main.yml diff --git a/README.md b/README.md index 901cba2..34a715b 100644 --- a/README.md +++ b/README.md @@ -46,15 +46,17 @@ requst by adding the software name to the list of `extra_software` in the * nfs.yml: * nfs-server: export /las-archiv1 to our network * lasarchiv: client side mount las126/las-archiv1 -* dhcpd.yml: DHCPd primary and secondary server on Fedora -* opera.yml: Cobham's Opera3d (client) ^2 ^3 * admin.yml: tools for administrators -* latex.yml: basic LaTeX installation (Arial not yet) ^1 -* kdev.yml: KDevelope (with Python PlugIn) ^1 -* pycharm.yml: Cross platform Python IDE: [PyCharm](https://www.jetbrains.com/pycharm/) IDE * chrome.yml: Google Chrome for Fedora (for Adobe Connect usage) +* dhcpd.yml: DHCPd primary and secondary server on Fedora * elegant.yml: elegant (no Pelegant, yet) * inovesa.yml: [Inovesa](https://github.com/Inovesa/Inovesa) +* kdev.yml: KDevelope (with Python PlugIn) ^1 +* latex.yml: basic LaTeX installation (Arial not yet) ^1 +* opera.yml: Cobham's Opera3d (client) ^2 ^3 +* pycharm.yml: Cross platform Python IDE: [PyCharm](https://www.jetbrains.com/pycharm/) IDE +* remmina.yml: remmina a Remote Desktop Protocol (Windows remote) client for e. g. [rds.scc.kit.edu](https://rds.scc.kit.edu) +* ripgrep.yml: ripgrep the better grep * undulator_control.yml: Install the software stack that is necessary to develop the control system for the JENA TGU experiment * zotero.yml: A citation management software diff --git a/hosts b/hosts index e02ba99..8fae57b 100644 --- a/hosts +++ b/hosts @@ -67,6 +67,10 @@ idefix.las.kit.edu [chrome] lysander.las.kit.edu +[rdp] +gutemine.las.kit.edu +asterix.las.kit.edu + [latex] gutemine.las.kit.edu lysander.las.kit.edu diff --git a/remmina.yml b/remmina.yml new file mode 100644 index 0000000..7c027ea --- /dev/null +++ b/remmina.yml @@ -0,0 +1,3 @@ +- hosts: rdp + roles: + - rdp diff --git a/roles/rdp/tasks/main.yml b/roles/rdp/tasks/main.yml new file mode 100644 index 0000000..9230f1e --- /dev/null +++ b/roles/rdp/tasks/main.yml @@ -0,0 +1,6 @@ +--- +- name: Install remmina RDS + become: yes + dnf: + name: remmina-plugins-rdp + state: present diff --git a/sites.yml b/sites.yml index 91049dc..01e8dcf 100644 --- a/sites.yml +++ b/sites.yml @@ -31,6 +31,8 @@ tags: [python, notebook] - import_playbook: inovesa.yml tags: inovesa +- import_playbook: remmina.yml + tags: win - import_playbook: ripgrep.yml tags: ripgrep - import_playbook: epics.yml -- GitLab