some ansible tweaks

This commit is contained in:
Marvin Steadfast 2016-05-09 13:47:18 +00:00
parent 2af7829ff0
commit b752a79a03

View File

@ -10,19 +10,21 @@
update_cache=yes update_cache=yes
with_items: with_items:
- ack - ack
- build-base
- ca-certificates - ca-certificates
- coreutils - coreutils
- curl - curl
- g++
- gcc - gcc
- git - git
- grep - grep
- imagemagick - imagemagick
- lftp - lftp
- libffi-dev
- libstdc++ - libstdc++
- make - make
- musl-dev - musl-dev
- nodejs - nodejs
- openssl-dev
- perl - perl
- python-dev - python-dev
- python3 - python3
@ -125,13 +127,17 @@
name={{ item }} name={{ item }}
state=absent state=absent
with_items: with_items:
- build-base - g++
- python3-dev - gcc
- libffi-dev
- libstdc++
- openssl-dev
- python-dev - python-dev
- python3-dev
become: yes become: yes
- name: install make - name: remove ansible
apk: file:
name=make path=~/ansible
state=present state=absent
become: yes