Add splash screen to the gnome role.
This commit is contained in:
parent
6f5556e37f
commit
1e83a0f1f6
2 changed files with 12 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
- name: update dconf
|
- name: update dconf
|
||||||
command: dconf update
|
command: dconf update
|
||||||
listen: update dconf
|
listen: update dconf
|
||||||
|
|
||||||
|
- name: update grub
|
||||||
|
command: update-grub
|
||||||
|
listen: update grub
|
||||||
|
|
|
@ -27,9 +27,16 @@
|
||||||
dest: /etc/dconf/db/local.d/defaults
|
dest: /etc/dconf/db/local.d/defaults
|
||||||
notify: update dconf
|
notify: update dconf
|
||||||
|
|
||||||
## Bug #698504
|
## Bug #698504
|
||||||
- name: allow print job management
|
- name: allow print job management
|
||||||
replace:
|
replace:
|
||||||
dest: "/etc/cups/cups-files.conf"
|
dest: "/etc/cups/cups-files.conf"
|
||||||
regexp: '^(SystemGroup lpadmin)$'
|
regexp: '^(SystemGroup lpadmin)$'
|
||||||
replace: '\1 root'
|
replace: '\1 root'
|
||||||
|
|
||||||
|
- name: enable splash screen
|
||||||
|
replace:
|
||||||
|
dest: "/etc/default/grub"
|
||||||
|
regexp: '"quiet"$'
|
||||||
|
replace: '"quiet splash"'
|
||||||
|
notify: update grub
|
||||||
|
|
Loading…
Add table
Reference in a new issue