Ansible roles to configure Linux and MacOS.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
- name: Make xorg.conf
|
|
|
|
vars:
|
|
|
|
driver: "{{ x.driver }}"
|
|
|
|
template:
|
|
|
|
src: xorg/xorg.conf.j2
|
|
|
|
dest: "/etc/X11/xorg.conf.clt"
|
|
|
|
|
|
|
|
- name: Configure touchpad
|
|
|
|
template:
|
|
|
|
src: xorg/touchpad.conf.j2
|
|
|
|
dest: "/etc/X11/xorg.conf.d/touchpad.conf.clt"
|
|
|
|
|
|
|
|
- name: Configure keyboard layouts
|
|
|
|
template:
|
|
|
|
src: xorg/xkb/{{ item }}.j2
|
|
|
|
dest: "{{ x.xkb.directory }}/{{ item }}"
|
|
|
|
loop: "{{ x.xkb.layouts }}"
|
|
|
|
|
|
|
|
- name: Disable kernel modules
|
|
|
|
vars:
|
|
|
|
modules: "{{ x.modules.blacklist }}"
|
|
|
|
template:
|
|
|
|
src: modprobe.d/xorg-blacklist.conf.j2
|
|
|
|
dest: /etc/modprobe.d/xorg-blacklist.conf
|
|
|
|
|