From a9dc976c98c3c11b79cf5e05e179d823f931ea4e Mon Sep 17 00:00:00 2001 From: Roei Dalmedigos Date: Sat, 22 Mar 2025 15:46:57 +0200 Subject: [PATCH 1/2] feat(prereq): add installation tasks for libnfs-utils and nfs-common This commit introduces tasks to install `libnfs-utils` and `nfs-common` using the apt package manager, ensuring they are present and the package cache is updated. --- roles/prereq/tasks/main.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/roles/prereq/tasks/main.yml b/roles/prereq/tasks/main.yml index 9161f7b..bc02e20 100644 --- a/roles/prereq/tasks/main.yml +++ b/roles/prereq/tasks/main.yml @@ -67,3 +67,15 @@ path: /etc/sudoers validate: visudo -cf %s when: ansible_os_family in [ "RedHat", "Suse" ] + +- name: install libnfs-utils + apt: + name: libnfs-utils + state: present + update_cache: true + +- name: install nfs-common + apt: + name: nfs-common + state: present + update_cache: true From 0236885ec8c10b6df313b30ea19cd33280deaa33 Mon Sep 17 00:00:00 2001 From: Roei Dalmedigos Date: Sat, 7 Jun 2025 10:00:20 +0300 Subject: [PATCH 2/2] chore: update file permissions for inventory files to executable --- inventory/.gitignore | 0 inventory/sample/group_vars/all.yml | 0 inventory/sample/group_vars/proxmox.yml | 0 inventory/sample/hosts.ini | 0 4 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 inventory/.gitignore mode change 100644 => 100755 inventory/sample/group_vars/all.yml mode change 100644 => 100755 inventory/sample/group_vars/proxmox.yml mode change 100644 => 100755 inventory/sample/hosts.ini diff --git a/inventory/.gitignore b/inventory/.gitignore old mode 100644 new mode 100755 diff --git a/inventory/sample/group_vars/all.yml b/inventory/sample/group_vars/all.yml old mode 100644 new mode 100755 diff --git a/inventory/sample/group_vars/proxmox.yml b/inventory/sample/group_vars/proxmox.yml old mode 100644 new mode 100755 diff --git a/inventory/sample/hosts.ini b/inventory/sample/hosts.ini old mode 100644 new mode 100755