From bb4ab4dec95b9dc2a33b196f8d973c81c0f5fc00 Mon Sep 17 00:00:00 2001 From: B Stack Date: Mon, 13 Mar 2017 13:41:59 -0400 Subject: initial commit --- main.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 main.yml (limited to 'main.yml') diff --git a/main.yml b/main.yml new file mode 100644 index 0000000..96961e6 --- /dev/null +++ b/main.yml @@ -0,0 +1,18 @@ +--- +# File: /etc/ansible/roles/use-proxy/main.yml +# Author: bgstack15 +# Startdate: 2017-03-13 10:30 +# Title: Ansible Role That Initializes an SSH Reverse Tunnel for http_proxy +# Purpose: To make it easy to yum update on hosts that cannot reach repos normally +# Usage: +# Reference: +# Improve: +# Document: Spread out within this directory + +- hosts: all + tasks: + - include: tasks/main.yml + handlers: + - handlers/main.yml + vars_files: + - vars/main.yml -- cgit