You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1018 B
YAML
67 lines
1018 B
YAML
7 years ago
|
- name: Update and Upgrade System
|
||
|
pacman:
|
||
|
update_cache: yes
|
||
|
upgrade: yes
|
||
|
tags:
|
||
|
- install
|
||
|
- setup
|
||
|
- update
|
||
|
|
||
|
- name: install sysadmin tools
|
||
|
pacman: name={{ item }} state=present
|
||
|
with_items:
|
||
|
- lsof
|
||
|
- psmisc
|
||
|
- htop
|
||
|
- nethogs
|
||
|
- iftop
|
||
|
- rsync
|
||
|
- tmux
|
||
|
- mtr
|
||
|
- sshfs
|
||
|
- dfc
|
||
|
- tree
|
||
|
- dstat
|
||
|
- dmidecode
|
||
|
- net-tools
|
||
|
- ncdu
|
||
|
- nmap
|
||
|
- sysstat
|
||
|
- iptraf-ng
|
||
|
- vnstat
|
||
|
- tcpdump
|
||
|
- sudo
|
||
|
- mosh
|
||
|
- nmon
|
||
|
|
||
|
- name: install misc utils
|
||
|
pacman: name={{ item }} state=present
|
||
|
with_items:
|
||
|
- git
|
||
|
- wget
|
||
|
- curl
|
||
|
- arch-install-scripts
|
||
|
- debootstrap
|
||
|
- zsh
|
||
|
- colordiff
|
||
|
- multitail
|
||
|
- cloc
|
||
|
- ipcalc
|
||
|
- calc
|
||
|
- neovim
|
||
|
- python2
|
||
|
- neovim
|
||
|
- vim
|
||
|
- bash-completion
|
||
|
- pv
|
||
|
- rxvt-unicode-terminfo
|
||
|
- termite-terminfo
|
||
|
- p7zip
|
||
|
- unzip
|
||
|
- setconf
|
||
|
- kexec-tools
|
||
|
- ca-certificates
|
||
|
|
||
|
- name: start vnstatd
|
||
|
service: name=vnstat state=started enabled=true
|