6 changed files with 69 additions and 6 deletions
@ -0,0 +1,45 @@ |
|||||||
|
--- |
||||||
|
|
||||||
|
# - name: Set up tty brightness |
||||||
|
# copy: |
||||||
|
# dest: /etc/local.d/brightness.start |
||||||
|
# content: | |
||||||
|
#!/bin/bash |
||||||
|
# xbacklight -d :0 -set {{ system.display_brightness }} |
||||||
|
# mode: "0755" |
||||||
|
|
||||||
|
# - name: Configure tty colours |
||||||
|
# template: |
||||||
|
# src: rgb.vt.j2 |
||||||
|
# dest: /etc/rgb.vt |
||||||
|
|
||||||
|
# - name: Set up tty colours on system boot |
||||||
|
# copy: |
||||||
|
# dest: /etc/local.d/rgb.start |
||||||
|
# content: | |
||||||
|
#!/bin/bash |
||||||
|
# setvtrgb /etc/rgb.vt |
||||||
|
# mode: "0755" |
||||||
|
|
||||||
|
- name: Configure /etc/issue |
||||||
|
template: |
||||||
|
src: issue.j2 |
||||||
|
dest: /etc/issue |
||||||
|
|
||||||
|
- name: Configure /etc/motd |
||||||
|
template: |
||||||
|
src: motd.j2 |
||||||
|
dest: /etc/motd |
||||||
|
|
||||||
|
- name: Configure consolefont |
||||||
|
lineinfile: |
||||||
|
path: /etc/conf.d/consolefont |
||||||
|
regexp: '^consolefont=' |
||||||
|
line: "consolefont={{ system.console_font }}" |
||||||
|
state: present |
||||||
|
|
||||||
|
- name: Configure consolefont template |
||||||
|
template: |
||||||
|
src: consolefont.j2 |
||||||
|
dest: /etc/conf.d/consolefont.clt |
||||||
|
|
@ -0,0 +1,3 @@ |
|||||||
|
45,242,153,255,102,204,102,211,116,242,153,255,102,204,102,242 |
||||||
|
45,119,204,204,153,153,204,208,115,119,204,204,153,153,204,240 |
||||||
|
45,122,153,102,204,204,204,200,105,122,153,102,204,204,204,236 |
Loading…
Reference in new issue