Install python-httplib2 required packaged

This commit is contained in:
Smaine Kahlouch
2015-12-21 12:00:42 +01:00
parent bba3525cd8
commit ab694ee291
2 changed files with 7 additions and 6 deletions

View File

@@ -15,3 +15,9 @@
- name: Create etcd2 binary symlink
file: src=/usr/local/bin/etcd dest=/usr/local/bin/etcd2 state=link
- name: install required python module 'httplib2'
apt:
name: "python-httplib2"
state: present
when: inventory_hostname == groups['kube-master'][0] or inventory_hostname == groups['etcd'][0]