ansible/roles/common/tasks/Proxmox.yml

28 lines
573 B
YAML
Raw Normal View History

2018-10-15 21:47:26 +02:00
---
- name: Install misc software
2020-11-13 17:39:47 +01:00
apt:
name:
- dnsutils
- htop
- ipmitool
- less
- rsync
- vim-nox
- zsh
2018-10-15 21:47:26 +02:00
- name: Configure misc software
copy: src={{ item.src }} dest={{ item.dest }}
diff: no
2018-10-15 21:47:26 +02:00
with_items:
2021-11-03 18:29:04 +01:00
- { src: ".zshrc", dest: "/root/.zshrc" }
- { src: ".zshrc.local", dest: "/root/.zshrc.local" }
- { src: "motd", dest: "/etc/motd" }
- { src: "vimrc.local", dest: "/etc/vim/vimrc.local" }
- name: Set shell for root user
user: name=root shell=/bin/zsh
- name: Set vm.swappiness
sysctl: name=vm.swappiness value=10