Add shell useful commands

This commit is contained in:
Pierre Martin
2015-10-03 09:13:26 +02:00
parent bdb6162b50
commit 8f3ea357d5

View File

@@ -84,6 +84,9 @@
- shutter - shutter
- exfat-utils - exfat-utils
- exfat-fuse - exfat-fuse
- ncdu
- tree
- unison
- xclip - xclip
- name: Thinkpad related packages are installed - name: Thinkpad related packages are installed
apt: name={{ item }} state=present apt: name={{ item }} state=present
@@ -104,12 +107,16 @@
- { src: gitconfig.j2, dest: .gitconfig } - { src: gitconfig.j2, dest: .gitconfig }
- { src: gitignore.j2, dest: .gitignore } - { src: gitignore.j2, dest: .gitignore }
- name: ensure a writable "bin" directory exists - name: ensure a writable "bin" directory exists
tags: shell
file: path={{BIN_DIR}} state=directory mode=0755 file: path={{BIN_DIR}} state=directory mode=0755
- name: ensure fasd is installed and configured - name: ensure fasd is installed and configured
tags: shell
get_url: url=https://raw.githubusercontent.com/clvv/fasd/master/fasd dest={{BIN_DIR}}/fasd mode=0755 get_url: url=https://raw.githubusercontent.com/clvv/fasd/master/fasd dest={{BIN_DIR}}/fasd mode=0755
- name: ensure binaries are available in path - name: ensure binaries are available in path
tags: shell
copy: src=bin/ dest={{BIN_DIR}}/ mode=0755 copy: src=bin/ dest={{BIN_DIR}}/ mode=0755
- name: ensure dotfiles are available - name: ensure dotfiles are available
tags: shell
copy: src=.zshrc dest={{ansible_env.HOME}}/.zshrc copy: src=.zshrc dest={{ansible_env.HOME}}/.zshrc
# TODO # TODO