You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible-homelab/ansible/homelab/playbooks/mount-hdds.yml

13 lines
261 B
YAML

---
- hosts: servers
vars_files:
- ../variables.yml
become: true
tasks:
- name: Mount up device by UUID
ansible.posix.mount:
path: /mnt/hdds
src: "UUID={{hdds_uuid}}"
fstype: ext4
state: mounted
opts: default,nofail