Files

19 lines
299 B
YAML
Raw Permalink Normal View History

2024-09-24 15:19:51 +02:00
---
- name: Remove /tmp from fstab
become: true
ansible.posix.mount:
path: /tmp
state: absent
tags:
- fstab
- name: Remove floppy from fstab
become: true
ansible.builtin.lineinfile:
path: /etc/fstab
state: absent
regexp: '^(.*)floppy(.*)$'
tags:
- fstab
...