From 1a852318ac8bc67ea4452290cbdb764263338ce0 Mon Sep 17 00:00:00 2001
From: Jens Steidl <Jens.Steidl@slub-dresden.de>
Date: Tue, 13 Jul 2021 12:11:25 +0200
Subject: [PATCH] fix: enabled all required roles for a complete installation

---
 ansible.cfg | 2 +-
 site.yml    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ansible.cfg b/ansible.cfg
index b22ccdc..5667bfa 100644
--- a/ansible.cfg
+++ b/ansible.cfg
@@ -1,7 +1,7 @@
 [defaults]
 # If set, configures the path to the Vault password file as an alternative to
 # specifying --vault-password-file on the command line.
-vault_identity_list = ../lza_ingest.pass, ../slub_osquery.pass
+vault_identity_list = ../lza_install_common.pass, ../slub_osquery.pass, ../lza_server_hardening.pass, ../lza_ingest.pass
 
 # Path to default inventory file
 # Administrators can override this by using the "-i <inventoryfile>" CLI
diff --git a/site.yml b/site.yml
index 5f4b73c..47e3859 100644
--- a/site.yml
+++ b/site.yml
@@ -47,6 +47,6 @@
   no_log: false
 
   roles:
-    # - { role: ansible_lza_install_common, become: true }
-    # - { role: ansible_lza_server_hardening, become: true }
+    - { role: ansible_lza_install_common, become: true }
+    - { role: ansible_lza_server_hardening, become: true }
     - {role: ansible_lza_ingest, become: true}
-- 
GitLab