From 9fddb8b73037a015eb7a2b6b8128dafe834223b8 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Fri, 29 Mar 2024 01:59:09 +0100 Subject: [PATCH] Add files via upload --- mount_points.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 mount_points.yaml diff --git a/mount_points.yaml b/mount_points.yaml new file mode 100644 index 0000000..6270248 --- /dev/null +++ b/mount_points.yaml @@ -0,0 +1,30 @@ +--- +- name: install our repos + hosts: all + become: true + + tasks: + - name: remove other files + include_tasks: yaml_sub/myrepo_clean.yaml + - name: update file myrepo.repo + import_tasks: yaml_sub/myrepo_data.yaml + + - name: install nfs tools + dnf: + name: nfs-utils,nfs-utils-coreos,nfsv4-client-utils,rpcbind + state: present + update_cache: true + skip_broken: true + nobest: false + allowerasing: true + + - name: Make sure rpcbind service unit is started + systemd_service: + enabled: true + state: started + name: rpcbind + + - name: mount_info + include_tasks: yaml_sub/mount_info.yaml + +