26 lines
586 B
YAML
26 lines
586 B
YAML
---
|
|
- name: System configuration
|
|
hosts: all
|
|
become: true
|
|
roles:
|
|
- role: passwordless_sudo
|
|
tags: [sudo, security, bootstrap]
|
|
- role: base_packages
|
|
tags: [packages, bootstrap]
|
|
- role: cockpit
|
|
tags: [cockpit, bootstrap]
|
|
- role: ipv6_disable
|
|
tags: [ipv6, security, bootstrap]
|
|
- role: selinux
|
|
tags: [selinux, security, bootstrap]
|
|
|
|
- name: User configuration
|
|
hosts: all
|
|
roles:
|
|
- role: terminal
|
|
tags: [terminal, bootstrap]
|
|
- role: vim
|
|
tags: [vim, bootstrap]
|
|
- role: dotfiles
|
|
tags: [dotfiles, bootstrap]
|