back to singular

This commit is contained in:
2022-09-24 20:55:50 +02:00
parent 0e20f83a67
commit dd00b2840a
60 changed files with 51 additions and 51 deletions

View File

@@ -0,0 +1,17 @@
---
# Load distro specific variables
- include_vars: "{{ ansible_distribution }}.yml"
tags: always
ignore_errors: True
- include_vars: "{{ ansible_fqdn }}.yml"
ignore_errors: True
- include_tasks: squid.yaml
when:
- squid is defined
- squid == true
- include_tasks: tinyproxy.yaml
when:
- tinyproxy is defined
- tiniproxy == true

View File

@@ -0,0 +1,4 @@
- name: proxyserver | squid | install squid
package:
name: squid
state: latest

View File

@@ -0,0 +1,4 @@
- name: proxyserver | tinyproxy | install tinyproxy
package:
name: tinyproxy
state: latest