Skip to content

Commit 26b3e4b

Browse files
committed
(Python) consistency changes
1 parent 203ea1b commit 26b3e4b

File tree

10 files changed

+12
-11
lines changed

10 files changed

+12
-11
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ MAINTAINER Mischa ter Smitten <[email protected]>
55
RUN apt-get update && \
66
DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal python-dev curl && \
77
apt-get clean
8-
RUN curl -sL https://bootstrap.pypa.io/get-pip.py | python -
8+
RUN curl -sL https://bootstrap.pypa.io/pip/2.7/get-pip.py | python -
99
RUN rm -rf $HOME/.cache
1010

1111
# ansible
1212
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gcc libffi-dev libssl-dev && \
1313
apt-get clean
14-
RUN pip install ansible==2.9.14
14+
RUN pip install ansible==2.9.15
1515
RUN rm -rf $HOME/.cache
1616

1717
# provision

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# defaults file for insync
1+
# defaults file
22
---

handlers/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# handlers file for insync
1+
# handlers file
22
---

meta/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# meta file for insync
1+
# meta file
22
---
33
galaxy_info:
4+
namespace: oefenweb
45
role_name: insync
56
author: Mischa ter Smitten
67
company: Oefenweb.nl B.V.

tasks/install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# tasks file for insync
1+
# tasks file
22
---
33
- name: install dependencies
44
apt:

tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# tasks file for insync
1+
# tasks file
22
---
33
- include: repository.yml
44
tags:

tasks/repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# tasks file for insync
1+
# tasks file
22
---
33
- name: add public key
44
apt_key:

tests/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# test file for insync
1+
# test file
22
---
33
- hosts: localhost
44
connection: local

tests/vagrant.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# test file for insync
1+
# test file
22
---
33
- hosts: all
44
remote_user: vagrant

vars/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# vars file for insync
1+
# vars file
22
---
33
insync_repositories:
44
- type: deb

0 commit comments

Comments
 (0)