diff --git a/inventories/host_vars/console.yml b/inventories/host_vars/console.yml index 28b0324..cf9cd08 100644 --- a/inventories/host_vars/console.yml +++ b/inventories/host_vars/console.yml @@ -19,6 +19,8 @@ apt: - libdvd-pkg - libdvdcss - libheif1 + - open-vm-tools + - open-vm-tools-desktop - openssh-server - openssl - p7zip-full diff --git a/inventories/host_vars/rui.yml b/inventories/host_vars/rui.yml index 71d08de..850620e 100644 --- a/inventories/host_vars/rui.yml +++ b/inventories/host_vars/rui.yml @@ -9,6 +9,7 @@ apt: - expat - git - iptables + - open-vm-tools - perl - python3 - rsync diff --git a/inventories/host_vars/skylark.yml b/inventories/host_vars/skylark.yml index e36a11f..cf31229 100644 --- a/inventories/host_vars/skylark.yml +++ b/inventories/host_vars/skylark.yml @@ -10,3 +10,9 @@ drives: mountpoint: /backup filesystem: "xfs" options: "defaults,users" + +apt: + - open-vm-tools + - ffmpeg + - renameutils + - wget diff --git a/inventories/host_vars/tm.yml b/inventories/host_vars/tm.yml index 3cb84f3..41b90d3 100644 --- a/inventories/host_vars/tm.yml +++ b/inventories/host_vars/tm.yml @@ -2,3 +2,4 @@ apt: - avahi-daemon + - open-vm-tools diff --git a/tasks/skylark/install-supplicant-programs.yml b/tasks/skylark/install-supplicant-programs.yml index 76c96d4..d2e36ec 100644 --- a/tasks/skylark/install-supplicant-programs.yml +++ b/tasks/skylark/install-supplicant-programs.yml @@ -2,7 +2,7 @@ - name: Install Supplicant Files ansible.builtin.apt: + update_cache: true pkg: - - ffmpeg - - renameutils - - wget + "{{ item }}" + loop: "{{ apt }}"