-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a000cd2
commit 22243a5
Showing
14 changed files
with
43 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ MAINTAINER Mischa ter Smitten <[email protected]> | |
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal python-dev curl && \ | ||
apt-get clean | ||
RUN curl -sL https://bootstrap.pypa.io/get-pip.py | python - | ||
RUN curl -sL https://bootstrap.pypa.io/pip/2.7/get-pip.py | python - | ||
RUN rm -rf $HOME/.cache | ||
|
||
# ansible | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# defaults file for virtualenv | ||
# defaults file | ||
--- | ||
virtualenv_python_version: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# handlers file for virtualenv | ||
# handlers file | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
# test file for virtualenv | ||
# test file | ||
--- | ||
- hosts: localhost | ||
connection: local | ||
become: true | ||
pre_tasks: | ||
- name: include variables | ||
include_vars: "{{ item }}" | ||
with_first_found: | ||
- "{{ playbook_dir }}/vars/_{{ ansible_distribution_release }}.yml" | ||
- "{{ playbook_dir }}/vars/_{{ ansible_distribution | lower }}.yml" | ||
- "{{ playbook_dir }}/vars/_default.yml" | ||
- name: include tasks | ||
include: "{{ playbook_dir }}/tasks/pre.yml" | ||
roles: | ||
- ../../ | ||
# vars: | ||
# virtualenv_python_version: 3 | ||
# virtualenv_python_version_major: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# vars file for virtualenv | ||
# vars file | ||
--- | ||
virtualenv_python_version: 3 | ||
virtualenv_get_pip_url: 'https://bootstrap.pypa.io/get-pip.py' | ||
virtualenv_python_version_major: 3 | ||
virtualenv_get_pip_url: 'https://bootstrap.pypa.io/pip/get-pip.py' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# vars file for virtualenv | ||
# vars file | ||
--- | ||
virtualenv_python_version: 2 | ||
virtualenv_get_pip_url: 'https://bootstrap.pypa.io/2.7/get-pip.py' | ||
virtualenv_python_version_major: 2 | ||
virtualenv_get_pip_url: 'https://bootstrap.pypa.io/pip/2.7/get-pip.py' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# vars file for virtualenv | ||
# vars file | ||
--- | ||
virtualenv_python_version: 2 | ||
virtualenv_get_pip_url: 'https://bootstrap.pypa.io/2.7/get-pip.py' | ||
virtualenv_python_version_major: 2 | ||
virtualenv_get_pip_url: 'https://bootstrap.pypa.io/pip/2.7/get-pip.py' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# vars file for pip | ||
# vars file | ||
--- | ||
virtualenv_python_version: 3 | ||
virtualenv_get_pip_url: 'https://bootstrap.pypa.io/3.5/get-pip.py' | ||
virtualenv_python_version_major: 3 | ||
virtualenv_get_pip_url: 'https://bootstrap.pypa.io/pip/3.5/get-pip.py' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters