From d73f54e7e56f689fa3dc69e5a54f078c9680c337 Mon Sep 17 00:00:00 2001 From: Emil Renner Berthing Date: Wed, 3 Oct 2018 15:31:49 +0200 Subject: debian: add basic Debian role --- roles/debian/tasks/main.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 roles/debian/tasks/main.yml (limited to 'roles/debian/tasks/main.yml') diff --git a/roles/debian/tasks/main.yml b/roles/debian/tasks/main.yml new file mode 100644 index 0000000..71637c1 --- /dev/null +++ b/roles/debian/tasks/main.yml @@ -0,0 +1,31 @@ +--- +- import_tasks: apt.yml + tags: apt +- import_tasks: tmpfs.yml + tags: tmpfs + when: use_tmpfs +- import_tasks: hosts.yml + tags: hosts +- import_tasks: timezone.yml + when: timezone is defined + tags: timezone +- import_tasks: locale.yml + when: locale is defined + tags: locale +- import_tasks: hostname.yml + when: hostname is defined + tags: hostname +- import_tasks: systemd.yml + tags: systemd +- import_tasks: resolved.yml + tags: resolved +- import_tasks: networkd.yml + tags: networkd +- import_tasks: timesyncd.yml + tags: timesyncd +- import_tasks: sshd.yml + tags: sshd +- import_tasks: sudo.yml + tags: sudo + +# vim: set ts=2 sw=2 et: -- cgit v1.2.1