aboutsummaryrefslogtreecommitdiff
path: root/main.yml
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2017-03-13 13:41:59 -0400
committerB Stack <bgstack15@gmail.com>2017-03-13 13:41:59 -0400
commitbb4ab4dec95b9dc2a33b196f8d973c81c0f5fc00 (patch)
treecabf7d9b887bc9c4c5f2f2d6574d127fe6670b4c /main.yml
downloadansible-ssh-tunnel-for-proxy-master.tar.gz
ansible-ssh-tunnel-for-proxy-master.tar.bz2
ansible-ssh-tunnel-for-proxy-master.zip
initial commitHEADmaster
Diffstat (limited to 'main.yml')
-rw-r--r--main.yml18
1 files changed, 18 insertions, 0 deletions
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
bgstack15