This commit is contained in:
2021-08-13 19:34:31 +02:00
parent be936fc8da
commit 6ccc932df9
5 changed files with 228 additions and 20 deletions

View File

@@ -119,6 +119,7 @@
- nis-install
- nis-install-server
# tags supported inside nfs.yml:
#
# nis-install-client
@@ -128,6 +129,7 @@
- nis-install
- nis-install-client
# tags supported inside samba_user.yml:
#
# samba-user
@@ -137,18 +139,6 @@
- nis-samba-user
- import_tasks: mount_samba_shares.yml
when: "groups['client_pc']|string is search(inventory_hostname)"
tags:
- samba-shares
- import_tasks: mount_samba_shares.yml
when: "groups['client_pc']|string is search(inventory_hostname)"
tags:
- samba-shares
# tags supported system-user-systemfiles.yml:
#
# profile
@@ -202,15 +192,48 @@
- sudoers
# tags supported inside mount_samba_shares.yml:
#
- import_tasks: mount_samba_shares.yml
when: "groups['client_pc']|string is search(inventory_hostname)"
tags:
- samba-shares
# Tasks: Configure VNC (x11vnc) for Ubuntu systems
#
# Supported OS:
# - Ubuntu 16.04LTSi
# - Ubuntu 18.04LTSi
- name: "For OS: Ubuntu 16.04LTS, Arch: amd64"
import_tasks: ubuntu-x11vnc-1604-amd64.yml
when:
- ansible_distribution_version == "16.04"
- ansible_architecture == "x86_64"
tags:
- x11vnc
- x11vnc-1604
- finish-client-install
- name: "For OS: Ubuntu 18.04LTS, Arch: amd64"
import_tasks: ubuntu-x11vnc-1804-amd64.yml
when:
- ansible_distribution_version == "18.04"
- ansible_architecture == "x86_64"
tags:
- x11vnc
- x11vnc-1804
- finish-client-install
- name: "For OS: Ubuntu 20.04LTS, Arch: amd64"
import_tasks: ubuntu-x11vnc-2004-amd64.yml
when:
- ansible_distribution_version == "20.04"
- ansible_architecture == "x86_64"
tags:
- x11vnc
- x11vnc-2004
- finish-client-install