aboutsummaryrefslogtreecommitdiffstats
path: root/roles/devd/tasks/main.yml
blob: 8e7e3b68d6115b209595bc2a66bd082a67d8be6d (plain)
1
2
3
4
5
6
7
8
9
# Without this, devd spams syslog about scsi sense messages about the virtual
# floppy/optical drive.
- name: add -q flag to devd
  lineinfile:
    path: /etc/rc.conf.d/devd
    create: yes
    regexp: ^devd_flags=
    line: devd_flags="-q"
  notify: restart devd