File tree 9 files changed +38
-5
lines changed
9 files changed +38
-5
lines changed Original file line number Diff line number Diff line change
1
+ skip_list:
2
+ - '403'
Original file line number Diff line number Diff line change
1
+ FROM ubuntu:16.04
2
+ MAINTAINER Mischa ter Smitten <mtersmitten@oefenweb.nl>
3
+
4
+ # python
5
+ RUN apt-get update && \
6
+ DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal python-dev curl && \
7
+ apt-get clean
8
+ RUN curl -sL https://bootstrap.pypa.io/get-pip.py | python -
9
+ RUN rm -rf $HOME/.cache
10
+
11
+ # ansible
12
+ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gcc libffi-dev libssl-dev && \
13
+ apt-get clean
14
+ RUN pip install ansible==2.6.2
15
+ RUN rm -rf $HOME/.cache
16
+
17
+ # provision
18
+ COPY . /etc/ansible/roles/ansible-role
19
+ WORKDIR /etc/ansible/roles/ansible-role
20
+ RUN ansible-playbook -i tests/inventory tests/test.yml --connection=local
Original file line number Diff line number Diff line change @@ -53,6 +53,13 @@ boxes = [
53
53
:cpu => "50" ,
54
54
:ram => "256"
55
55
} ,
56
+ {
57
+ :name => "debian-10" ,
58
+ :box => "bento/debian-10" ,
59
+ :ip => '10.0.0.18' ,
60
+ :cpu => "50" ,
61
+ :ram => "256"
62
+ } ,
56
63
]
57
64
58
65
Vagrant . configure ( "2" ) do |config |
Original file line number Diff line number Diff line change 1
1
# defaults file for virtualenv
2
2
---
3
+ virtualenv_python_version : 2
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ galaxy_info:
19
19
- wheezy
20
20
- jessie
21
21
- stretch
22
+ - buster
22
23
galaxy_tags :
23
24
- development
24
25
- system
Original file line number Diff line number Diff line change 16
16
pip :
17
17
name : " {{ virtualenv_pip_dependencies }}"
18
18
state : latest
19
+ executable : " pip{{ virtualenv_python_version | string }}"
19
20
tags :
20
21
- configuration
21
22
- virtualenv
22
23
- virtualenv-install
23
- - skip_ansible_lint
Original file line number Diff line number Diff line change 3
3
- name : pre | install dependencies
4
4
apt :
5
5
name :
6
- - python
7
- - curl
6
+ - " python{{ virtualenv_python_version is version('3', '>=') | ternary('3', '') }} "
7
+ - curl
8
8
state : " {{ apt_install_state | default('latest') }}"
9
9
update_cache : true
10
10
cache_valid_time : " {{ apt_update_cache_valid_time | default(3600) }}"
11
11
12
12
- name : pre | install pip
13
13
shell : >
14
- curl -sL https://bootstrap.pypa.io/get-pip.py | python -
14
+ curl -sL https://bootstrap.pypa.io/get-pip.py | python{{ virtualenv_python_version | string }} -
15
15
args :
16
16
warn : false
17
17
changed_when : false
Original file line number Diff line number Diff line change 7
7
- include : pre.yml
8
8
roles :
9
9
- ../../
10
+ # vars:
11
+ # virtualenv_python_version: 3
Original file line number Diff line number Diff line change 1
1
# vars file for virtualenv
2
2
---
3
3
virtualenv_dependencies :
4
- - python
4
+ - " python{{ virtualenv_python_version is version('3', '>=') | ternary('3', '') }} "
5
5
6
6
virtualenv_pip_dependencies :
7
7
- virtualenv
You can’t perform that action at this time.
0 commit comments