This repository has been archived on 2021-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
common-server/tasks/main.yml

16 lines
314 B
YAML

- name: "Install Packages"
apt:
state: present
name: "{{ packages }}"
- name: "Blacklist the floppy driver module"
kernel_blacklist:
name: "floppy"
state: "present"
notify: "reconfigure initramfs"
- name: "Unload the floppy driver module"
modprobe:
name: "floppy"
state: "absent"