From 2a5a1c6fdc5cb2c3f12c7f983b6a5f2722fd73f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Wed, 6 Dec 2023 12:32:15 +0100 Subject: [PATCH] [add] role:proftpd --- ansible/roles/proftpd/defaults/main.json | 2 ++ ansible/roles/proftpd/info.md | 4 ++++ ansible/roles/proftpd/tasks/main.json | 11 +++++++++++ 3 files changed, 17 insertions(+) create mode 100644 ansible/roles/proftpd/defaults/main.json create mode 100644 ansible/roles/proftpd/info.md create mode 100644 ansible/roles/proftpd/tasks/main.json diff --git a/ansible/roles/proftpd/defaults/main.json b/ansible/roles/proftpd/defaults/main.json new file mode 100644 index 0000000..2c63c08 --- /dev/null +++ b/ansible/roles/proftpd/defaults/main.json @@ -0,0 +1,2 @@ +{ +} diff --git a/ansible/roles/proftpd/info.md b/ansible/roles/proftpd/info.md new file mode 100644 index 0000000..67fa61d --- /dev/null +++ b/ansible/roles/proftpd/info.md @@ -0,0 +1,4 @@ +## Verweise + +- [Website](http://proftpd.org/) +- [ubuntuusers-Artikel](https://wiki.ubuntuusers.de/ProFTPD/) diff --git a/ansible/roles/proftpd/tasks/main.json b/ansible/roles/proftpd/tasks/main.json new file mode 100644 index 0000000..982ae45 --- /dev/null +++ b/ansible/roles/proftpd/tasks/main.json @@ -0,0 +1,11 @@ +[ + { + "name": "install packages", + "become": true, + "ansible.builtin.apt": { + "pkg": [ + "proftpd-core" + ] + } + } +]