summaryrefslogtreecommitdiffstats
path: root/setup.yml
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2024-01-04 12:59:39 +0100
committerGuilhem Moulin <guilhem@fripost.org>2024-01-04 13:42:18 +0100
commit6691410f945719e62601c3d69d9b2ff9c4cfb4fb (patch)
tree9ea4170a6d5d50ac14a326f42fa8b13303734241 /setup.yml
parent609574f51c5c08af71419bddc1be16ad5668882a (diff)
Base system.
Diffstat (limited to 'setup.yml')
-rw-r--r--setup.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/setup.yml b/setup.yml
new file mode 100644
index 0000000..cf51ece
--- /dev/null
+++ b/setup.yml
@@ -0,0 +1,15 @@
+- name: Base system
+ hosts: all
+ gather_facts: True
+ tasks:
+ - name: Install etckeeper
+ apt: pkg=etckeeper
+ - import_tasks: ./tasks/firewall.yml
+ - import_tasks: ./tasks/network.yml
+ - import_tasks: ./tasks/sysctl.yml
+ - import_tasks: ./tasks/hosts.yml
+ - import_tasks: ./tasks/apt.yml
+ - import_tasks: ./tasks/ssh.yml
+ - import_tasks: ./tasks/base.yml
+ handlers:
+ - import_tasks: ./handlers/main.yml