Skip to content

Commit ea565c9

Browse files
committed
(Python) consistency changes
1 parent a926455 commit ea565c9

File tree

14 files changed

+16
-15
lines changed

14 files changed

+16
-15
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 net-tools iproute2 ethtool && \
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,4 +1,4 @@
1-
# defaults file for tinyproxy
1+
# defaults file
22
---
33
tinyproxy_install: []
44

handlers/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# handlers file for tinyproxy
1+
# handlers file
22
---
33
- name: restart tinyproxy
44
service:

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 tinyproxy
1+
# meta file
22
---
33
galaxy_info:
4+
namespace: oefenweb
45
role_name: tinyproxy
56
author: Mischa ter Smitten
67
company: Oefenweb.nl B.V.

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 tinyproxy
1+
# tasks file
22
---
33
- name: include variables
44
include_vars: "{{ item }}"

tests/post.yml

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

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 tinyproxy
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 tinyproxy
1+
# test file
22
---
33
- hosts: all
44
remote_user: vagrant

tests/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 tinyproxy
1+
# vars file
22
---
33
tinyproxy_port: 3128
44
tinyproxy_allow:

vars/_bionic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# vars file for tinyproxy
1+
# vars file
22
---
33
tinyproxy_configuration_file: /etc/tinyproxy/tinyproxy.conf
44

0 commit comments

Comments
 (0)