Initial commit

This commit is contained in:
nd 2017-09-23 16:03:53 +02:00
commit 9174d7e713
5 changed files with 4190 additions and 0 deletions

66
tasks/main.yml Normal file
View file

@ -0,0 +1,66 @@
---
- name: install basic packages
apt:
pkg: "{{ item }}"
state: latest
update_cache: yes
with_items:
- aptitude
- bsdtar
- curl
- dnsutils
- file
- git
- htop
- iftop
- iotop
- less
- ncurses-term
- nmap
- rsync
- screen
- sshfs
- tcpdump
- tmux
- tree
- vim
- vnstat
- xz-utils
- zsh
- mailutils
- members
- molly-guard
- mksh
- pciutils
- usbutils
- mosh
- mtr
- sysstat
- ncdu
- locales-all
- python3
- lsof
- pv
- net-tools
- name: copy environment
copy:
src: dotfiles/environment
dest: /etc/environment
mode: 0644
- name: copy vimrc
copy:
src: dotfiles/vimrc
dest: /etc/vim/vimrc
mode: 0644
- name: copy zshrc
copy:
src: dotfiles/zshrc
dest: /etc/zsh/zshrc
mode: 0644
- name: copy screenrc
copy:
src: dotfiles/screenrc
dest: /etc/screenrc
mode: 0644