Skip to content

Commit ca2a896

Browse files
committedJun 16, 2020
Add Python 3 support
1 parent 7178dbf commit ca2a896

File tree

9 files changed

+38
-5
lines changed

9 files changed

+38
-5
lines changed
 

‎.ansible-lint

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
skip_list:
2+
- '403'

‎Dockerfile

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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

‎Vagrantfile

+7
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ boxes = [
5353
:cpu => "50",
5454
:ram => "256"
5555
},
56+
{
57+
:name => "debian-10",
58+
:box => "bento/debian-10",
59+
:ip => '10.0.0.18',
60+
:cpu => "50",
61+
:ram => "256"
62+
},
5663
]
5764

5865
Vagrant.configure("2") do |config|

‎defaults/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# defaults file for virtualenv
22
---
3+
virtualenv_python_version: 2

‎meta/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ galaxy_info:
1919
- wheezy
2020
- jessie
2121
- stretch
22+
- buster
2223
galaxy_tags:
2324
- development
2425
- system

‎tasks/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
pip:
1717
name: "{{ virtualenv_pip_dependencies }}"
1818
state: latest
19+
executable: "pip{{ virtualenv_python_version | string }}"
1920
tags:
2021
- configuration
2122
- virtualenv
2223
- virtualenv-install
23-
- skip_ansible_lint

‎tests/pre.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
- name: pre | install dependencies
44
apt:
55
name:
6-
- python
7-
- curl
6+
- "python{{ virtualenv_python_version is version('3', '>=') | ternary('3', '') }}"
7+
- curl
88
state: "{{ apt_install_state | default('latest') }}"
99
update_cache: true
1010
cache_valid_time: "{{ apt_update_cache_valid_time | default(3600) }}"
1111

1212
- name: pre | install pip
1313
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 }} -
1515
args:
1616
warn: false
1717
changed_when: false

‎tests/test.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@
77
- include: pre.yml
88
roles:
99
- ../../
10+
# vars:
11+
# virtualenv_python_version: 3

‎vars/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# vars file for virtualenv
22
---
33
virtualenv_dependencies:
4-
- python
4+
- "python{{ virtualenv_python_version is version('3', '>=') | ternary('3', '') }}"
55

66
virtualenv_pip_dependencies:
77
- virtualenv

0 commit comments

Comments
 (0)
Please sign in to comment.