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
|
- name: Run update-grub
|
||||||
command: update-grub
|
command: update-grub
|
||||||
listen: update grub
|
|
||||||
|
|
||||||
- name: Enable tmp.mount
|
- name: Enable tmp.mount
|
||||||
systemd:
|
systemd:
|
||||||
|
|
|
@ -73,6 +73,13 @@
|
||||||
default_release: "{{ ansible_distribution_release }}-backports"
|
default_release: "{{ ansible_distribution_release }}-backports"
|
||||||
when: ansible_distribution_release == 'bullseye'
|
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
|
- name: Allow users to dump packets for wireshark
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: /usr/bin/dumpcap
|
path: /usr/bin/dumpcap
|
||||||
|
@ -137,7 +144,7 @@
|
||||||
block: |
|
block: |
|
||||||
set superusers='root'
|
set superusers='root'
|
||||||
password_pbkdf2 root {{ grub_pwd }}
|
password_pbkdf2 root {{ grub_pwd }}
|
||||||
notify: update grub
|
notify: Run update-grub
|
||||||
|
|
||||||
- name: Allow booting default entry
|
- name: Allow booting default entry
|
||||||
lineinfile:
|
lineinfile:
|
||||||
|
@ -145,7 +152,7 @@
|
||||||
line: CLASS="${CLASS} --unrestricted"
|
line: CLASS="${CLASS} --unrestricted"
|
||||||
insertafter: '^CLASS=.*'
|
insertafter: '^CLASS=.*'
|
||||||
firstmatch: true
|
firstmatch: true
|
||||||
notify: update grub
|
notify: Run update-grub
|
||||||
|
|
||||||
- name: grub timeout
|
- name: grub timeout
|
||||||
lineinfile:
|
lineinfile:
|
||||||
|
@ -153,7 +160,7 @@
|
||||||
regexp: '^(GRUB_TIMEOUT=).*'
|
regexp: '^(GRUB_TIMEOUT=).*'
|
||||||
line: '\g<1>1'
|
line: '\g<1>1'
|
||||||
backrefs: yes
|
backrefs: yes
|
||||||
notify: update grub
|
notify: Run update-grub
|
||||||
|
|
||||||
- name: keyboard compose key
|
- name: keyboard compose key
|
||||||
lineinfile:
|
lineinfile:
|
||||||
|
|
Loading…
Add table
Reference in a new issue