From 21c37e71f0b8fe617f7753fc535be8f80c2311b0 Mon Sep 17 00:00:00 2001 From: cradle8810 Date: Wed, 1 May 2024 07:48:10 +0900 Subject: [PATCH] =?UTF-8?q?open-vm-tools=E3=82=92apt=E3=81=A7=E3=82=A4?= =?UTF-8?q?=E3=83=B3=E3=82=B9=E3=83=88=E3=83=BC=E3=83=AB=E3=81=99=E3=82=8B?= =?UTF-8?q?=E5=AF=BE=E8=B1=A1=E3=81=AB=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inventories/host_vars/console.yml | 2 ++ inventories/host_vars/rui.yml | 1 + inventories/host_vars/skylark.yml | 6 ++++++ inventories/host_vars/tm.yml | 1 + tasks/skylark/install-supplicant-programs.yml | 6 +++--- 5 files changed, 13 insertions(+), 3 deletions(-) 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 }}"