blob: dde079d4533ab23c195813887a5e3f3de20228f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
---
- name: Basic Setup
hosts: s2-mr-snuggles
roles:
- role: apt-repo/base
- role: core/base
- role: core/sshd/base
- role: core/zsh
- role: core/cpu-microcode
- role: apt-repo/backports
- role: ws/base
- role: core/users
- role: ws/minet
post_tasks:
- name: disable caps-lock
lineinfile:
path: /etc/default/keyboard
regexp: '#?\s*XKBOPTIONS='
line: 'XKBOPTIONS="caps:none"'
## TODO: run update-grub and or fix installer to allow install of other operating systems
- name: install os-prober
apt:
name: os-prober
state: present
|