yamllint fixes

This commit is contained in:
Timo Makinen 2021-09-30 15:54:58 +00:00
parent 5b40315971
commit 06bc11d54a

View file

@ -10,35 +10,35 @@
- vars.yml - vars.yml
roles: roles:
- cups - cups
- firefox - firefox
- git - git
- google-chrome - google-chrome
- kerberos - kerberos
- ldap - ldap
- mutt - mutt
- spotify - spotify
- thinlinc - thinlinc
- thunderbird - thunderbird
tasks: tasks:
- name: "remove unneeded packages" - name: "remove unneeded packages"
package: package:
name: "{{ item }}" name: "{{ item }}"
state: absent state: absent
with_items: with_items:
- abrt - abrt
- mlocate - mlocate
- name: "hide grub menu during boot" - name: "hide grub menu during boot"
lineinfile: lineinfile:
path: /etc/default/grub path: /etc/default/grub
line: "{{ item }}" line: "{{ item }}"
with_items: with_items:
- GRUB_HIDDEN_TIMEOUT=1 - GRUB_HIDDEN_TIMEOUT=1
- GRUB_HIDDEN_TIMEOUT_QUIET=true - GRUB_HIDDEN_TIMEOUT_QUIET=true
- name: "remove grub default timeout" - name: "remove grub default timeout"
lineinfile: lineinfile:
path: /etc/default/grub path: /etc/default/grub
regexp: "^GRUB_TIMEOUT=" regexp: "^GRUB_TIMEOUT="
state: absent state: absent