github.com/cvmfs/docker-graphdriver@v0.0.0-20181206110523-155ec6df0521/provision/roles/common/tasks/main.yml (about) 1 --- 2 - name: create working directory 3 file: name="{{ workdir }}" state=directory 4 5 - name: install golang 6 package: name=golang state=present 7 8 - name: install common packages 9 package: name="{{ item }}" state=present 10 with_items: 11 - vim 12 - tmux 13 - git 14 - tree 15 - htop 16 - patch 17 - jq