diff options
-rw-r--r-- | vagrant_support/playbook.yml | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/vagrant_support/playbook.yml b/vagrant_support/playbook.yml index 666d45a78..f38c1fc06 100644 --- a/vagrant_support/playbook.yml +++ b/vagrant_support/playbook.yml @@ -9,14 +9,22 @@ - name: install common packages yum: name={{item}} state=present with_items: + - htop - libselinux-python + - ntp - policycoreutils-python - - python-urllib3 + - pyOpenSSL - python-pyasn1 + - python-sphinx10 + - python-urllib3 - python2-ndg_httpsclient - - pyOpenSSL - - htop - - ntp + + - name: link sphinx + command: ln -s /usr/bin/sphinx-1.0-{{ item }} /usr/bin/sphinx-{{ item }} creates=/usr/bin/sphinx-{{ item }} + with_items: + - autogen + - build + - quickstart - name: permissive selinux selinux: state=permissive policy=targeted |