Add files via upload
This commit is contained in:
parent
78aca75f8e
commit
9fddb8b730
1 changed files with 30 additions and 0 deletions
30
mount_points.yaml
Normal file
30
mount_points.yaml
Normal file
|
@ -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
|
||||
|
||||
|
Loading…
Reference in a new issue