blob: 96961e6bd88b7a0eccac8bf338e83b0f1ce8f015 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|