mirror of https://github.com/ceph/ceph-ansible.git
Fix not creating pypy_binary_direcotry
parent
e5eeea3556
commit
e31efd7ebf
|
@ -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
|
||||
|
||||
|
|
|
@ -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}}
|
||||
|
||||
|
|
Loading…
Reference in New Issue