Skip to content
This repository has been archived by the owner on Nov 29, 2017. It is now read-only.

Commit

Permalink
Make sure installed Python files are accessible for everyone
Browse files Browse the repository at this point in the history
  • Loading branch information
Johan Hermansson committed Feb 1, 2016
1 parent 400d24f commit 10bf49e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible-st2-local/roles/arteria_core/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
unarchive: src=/usr/src/Python-2.7.10.tgz dest=/usr/src copy=no

- name: compile python
shell: ./configure && make --quiet altinstall && touch ansible_state_completed
shell: umask 0022 && ./configure && make --quiet altinstall && touch ansible_state_completed
args:
chdir: /usr/src/Python-2.7.10
creates: /usr/src/Python-2.7.10/ansible_state_completed
Expand All @@ -43,7 +43,7 @@
copy: no

- name: install setup-tools
shell: /usr/local/bin/python2.7 setup.py install && touch /usr/src/setuptools-1.4.2/ansible_state_completed
shell: umask 0022 && /usr/local/bin/python2.7 setup.py install && touch /usr/src/setuptools-1.4.2/ansible_state_completed
args:
chdir: /usr/src/setuptools-1.4.2
creates: /usr/src/setuptools-1.4.2/ansible_state_completed
Expand Down

0 comments on commit 10bf49e

Please sign in to comment.