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 0cd3c63 commit 302be9d
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MAINTAINER Mischa ter Smitten <[email protected]>
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
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# defaults file for autossh-tunnel-client
# defaults file
---
autossh_tunnel_client_autossh_debug: 1
autossh_tunnel_client_autossh_first_poll: 30
Expand Down
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 autossh-tunnel-client
# handlers file
---
- name: restart autossh-tunnel-client
service:
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 autossh-tunnel-client
# meta file
---
galaxy_info:
namespace: oefenweb
role_name: autossh-tunnel-client
author: Mischa ter Smitten
company: Oefenweb.nl B.V.
Expand Down
2 changes: 1 addition & 1 deletion tasks/configure.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# tasks file for autossh-tunnel-client
# tasks file
---
- name: configure | create directories
file:
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 autossh-tunnel-client
# tasks file
---
- name: facts | set
set_fact:
Expand Down
2 changes: 1 addition & 1 deletion tasks/service-initd.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# tasks file for autossh-tunnel-client
# tasks file
---
- name: service | initd | update script
template:
Expand Down
2 changes: 1 addition & 1 deletion tasks/service-systemd.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# tasks file for autossh-tunnel-client
# tasks file
---
- name: service | systemd | update script
template:
Expand Down
2 changes: 1 addition & 1 deletion tasks/service-upstart.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# tasks file for autossh-tunnel-client
# tasks file
---
- name: service | upstart | update script
template:
Expand Down
2 changes: 1 addition & 1 deletion tests/tasks/post.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pre test file for autossh-tunnel-client
# pre test file
---
- name: install dependencies
apt:
Expand Down
2 changes: 1 addition & 1 deletion tests/tasks/pre.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pre test file for autossh-tunnel-client
# pre test file
---
- name: 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 autossh-tunnel-client
# 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 autossh-tunnel-client
# 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 autossh-tunnel-client
# vars file
---
autossh_tunnel_client_key_map:
- src: "{{ autossh_tunnel_client_private_key_file }}"
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 autossh-tunnel-client
# vars file
---
autossh_tunnel_client_dependencies:
- autossh
Expand Down

0 comments on commit 302be9d

Please sign in to comment.