From 6e7a94742604dba4223c292c979e146ce48dbc11 Mon Sep 17 00:00:00 2001
From: ale <ale@incal.net>
Date: Fri, 22 Mar 2019 09:47:48 +0000
Subject: [PATCH] Set become=no on localhost

---
 playbooks/init-credentials.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/playbooks/init-credentials.yml b/playbooks/init-credentials.yml
index a7b005d6..750dbe89 100644
--- a/playbooks/init-credentials.yml
+++ b/playbooks/init-credentials.yml
@@ -12,6 +12,7 @@
 
 - hosts: localhost
   gather_facts: no
+  become: no
   tasks:
     # Create the paths below credentials_dir that we're going to use.
     - name: "Create paths below {{ credentials_dir }}"
@@ -19,9 +20,10 @@
         path: "{{ credentials_dir }}/{{ item }}"
         state: directory
       with_items:
+        - dkim
+        - dnssec
         - ssh
         - sso
-        - vars
         - x509
 
     # First of all, generate secrets from the passwords.yml file.
-- 
GitLab