Merge pull request #864 from PiotrProkop/ceph-common-coreos-fix

Fix not creating pypy_binary_directory.
pull/867/head
Leseb 2016-06-28 17:27:53 -07:00 committed by GitHub
commit ecb410cd81
2 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,9 @@
- name: add execute permission
raw: chmod a+x {{pypy_directory}}/pip
- name: create pypy_directory
raw: mkdir -p {{pypy_binary_directory}}
- name: move python to binary directory
raw: mv {{pypy_directory}}/pip {{pypy_binary_directory}}/pip

View File

@ -2,6 +2,9 @@
- name: download python
raw: cd $HOME && wget -O - {{coreos_pypy_url}} |tar -xjf -
- name: create pypy_directory
raw: mkdir -p {{pypy_binary_directory}}
- name: move pypy to pypy_install_directory
raw: mv $HOME/pypy-{{coreos_pypy_version}}-{{coreos_pypy_arch}} {{pypy_directory}}