Add splash screen back.
This commit is contained in:
parent
6514d084f8
commit
1445467387
2 changed files with 10 additions and 4 deletions
|
@ -1,6 +1,5 @@
|
|||
- name: Run update-grub
|
||||
command: update-grub
|
||||
listen: update grub
|
||||
|
||||
- name: Enable tmp.mount
|
||||
systemd:
|
||||
|
|
|
@ -73,6 +73,13 @@
|
|||
default_release: "{{ ansible_distribution_release }}-backports"
|
||||
when: ansible_distribution_release == 'bullseye'
|
||||
|
||||
- name: enable splash screen
|
||||
replace:
|
||||
dest: "/etc/default/grub"
|
||||
regexp: '"quiet"$'
|
||||
replace: '"quiet splash"'
|
||||
notify: Run update-grub
|
||||
|
||||
- name: Allow users to dump packets for wireshark
|
||||
ansible.builtin.file:
|
||||
path: /usr/bin/dumpcap
|
||||
|
@ -137,7 +144,7 @@
|
|||
block: |
|
||||
set superusers='root'
|
||||
password_pbkdf2 root {{ grub_pwd }}
|
||||
notify: update grub
|
||||
notify: Run update-grub
|
||||
|
||||
- name: Allow booting default entry
|
||||
lineinfile:
|
||||
|
@ -145,7 +152,7 @@
|
|||
line: CLASS="${CLASS} --unrestricted"
|
||||
insertafter: '^CLASS=.*'
|
||||
firstmatch: true
|
||||
notify: update grub
|
||||
notify: Run update-grub
|
||||
|
||||
- name: grub timeout
|
||||
lineinfile:
|
||||
|
@ -153,7 +160,7 @@
|
|||
regexp: '^(GRUB_TIMEOUT=).*'
|
||||
line: '\g<1>1'
|
||||
backrefs: yes
|
||||
notify: update grub
|
||||
notify: Run update-grub
|
||||
|
||||
- name: keyboard compose key
|
||||
lineinfile:
|
||||
|
|
Loading…
Add table
Reference in a new issue