Initial version

This commit is contained in:
Mischa ter Smitten 2014-09-03 11:20:49 +02:00
parent 4a1a40c208
commit acca2e8062
9 changed files with 38 additions and 0 deletions

2
defaults/main.yml Normal file
View File

@ -0,0 +1,2 @@
---
# defaults file for ufw

0
files/empty Normal file
View File

2
handlers/main.yml Normal file
View File

@ -0,0 +1,2 @@
---
# handlers file for ufw

18
meta/main.yml Normal file
View File

@ -0,0 +1,18 @@
---
# meta file for ufw
galaxy_info:
author: Mischa ter Smitten
company: Oefenweb.nl B.V.
description: Set up ufw in Debian-like systems
license: BSD
min_ansible_version: 1.6
platforms:
- name: Ubuntu
versions:
- all
- name: Debian
versions:
- all
categories:
- system
dependencies: []

7
tasks/main.yml Normal file
View File

@ -0,0 +1,7 @@
---
# tasks file for ufw
- name: install
apt:
name: ufw
state: latest
tags: [configuration, ufw, ufw-install]

0
templates/empty Normal file
View File

1
tests/inventory Normal file
View File

@ -0,0 +1 @@
localhost

6
tests/test.yml Normal file
View File

@ -0,0 +1,6 @@
---
# test file for cron-apt
- hosts: localhost
remote_user: root
roles:
- ansible-ufw

2
vars/main.yml Normal file
View File

@ -0,0 +1,2 @@
---
# vars file for ufw