Skip to content

Commit 574fdc5

Browse files
Merge branch 'release/2.0.0'
2 parents 945ef6e + 7bf2e30 commit 574fdc5

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
*.swp
22
*.swo
33
/target-*/
4+
*.orig
5+
*.new
6+
*.new~

install/roles/bindle-dependencies/tasks/main.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,14 @@
2020
- python-paramiko
2121
- python-httplib2
2222

23-
- name: Download Ansible 1.6 deb package
24-
get_url:
23+
- name: Download get-pip
24+
get_url:
25+
url=https://bootstrap.pypa.io/get-pip.py
2526
dest=/tmp
26-
url=https://seqwaremaven.oicr.on.ca/artifactory/simple/seqware-dependencies/ansible/ansible/1.6.10-precise/ansible-1.6.10-precise.deb
27-
mode=755
2827

29-
- name: Install Ansible 1.6 (using default Ansible 1.5.4)
28+
- name: Install pip
3029
sudo: True
31-
shell: dpkg -i /tmp/ansible-1.6.10-precise.deb
30+
shell: python /tmp/get-pip.py
3231

3332
- name: Download Vagrant deb package
3433
get_url:
@@ -65,7 +64,7 @@
6564
- libipc-system-simple-perl
6665

6766
- name: Create .bindle directory
68-
file: path=~/.bindle state=directory
67+
file: path=/home/{{ user_name }}/.bindle state=directory owner={{ user_name }}
6968

7069
- name: Template over default config files
71-
template: src={{ bindle_config }} dest=~/.bindle
70+
template: src={{ bindle_config }} dest=/home/{{ user_name }}/.bindle/{{ bindle_config }}

0 commit comments

Comments
 (0)