Skip to content

Commit

Permalink
(Python) consistency changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Mar 15, 2021
1 parent 847c24b commit 655da6d
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ MAINTAINER Mischa ter Smitten <mtersmitten@oefenweb.nl>
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
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gcc libffi-dev libssl-dev && \
apt-get clean
RUN pip install ansible==2.9.14
RUN pip install ansible==2.9.15
RUN rm -rf $HOME/.cache

# provision
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# defaults file for ca-certificates
# defaults file
---
ca_certificates_certificate_map: []
2 changes: 1 addition & 1 deletion handlers/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# handlers file for ca-certificates
# handlers file
---
- name: update ca-certificates
command: >
Expand Down
3 changes: 2 additions & 1 deletion meta/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# meta file for ca-certificates
# meta file
---
galaxy_info:
namespace: oefenweb
role_name: ca-certificates
author: Mischa ter Smitten
company: Oefenweb.nl B.V.
Expand Down
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# tasks file for ca-certificates
# tasks file
---
- name: install dependencies
apt:
Expand Down
2 changes: 1 addition & 1 deletion tests/pre.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pre test file for ssh-keys
# pre test file
---
- name: pre | install dependencies
apt:
Expand Down
2 changes: 1 addition & 1 deletion tests/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# test file for ca-certificates
# test file
---
- hosts: localhost
connection: local
Expand Down
2 changes: 1 addition & 1 deletion tests/vagrant.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# test file for ca-certificates
# test file
---
- hosts: all
remote_user: vagrant
Expand Down
2 changes: 1 addition & 1 deletion tests/vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# vars file for ca-certificates
# vars file
---
ca_certificates_certificate_map:
- src: ca-oefenweb-nl.crt
Expand Down
2 changes: 1 addition & 1 deletion vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# vars file for ca-certificates
# vars file
---
ca_certificates_dependencies:
- ca-certificates
Expand Down

0 comments on commit 655da6d

Please sign in to comment.