From 5e139bc638b31daf5bc2b87b9107e43493e28211 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Mon, 18 May 2020 12:11:03 +0200 Subject: [PATCH] public_keys: Allow scripts in gitignore for usage in Ansible --- .gitignore | 2 ++ public_keys/README.md | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index ba6fe1a..f96a971 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,8 @@ credentials/** facts/** public_keys/** !README.md +!public_keys/*.sh +!public_keys/*.py *.retry *.facts /*.yml diff --git a/public_keys/README.md b/public_keys/README.md index b5b2bde..37dbd2f 100644 --- a/public_keys/README.md +++ b/public_keys/README.md @@ -6,3 +6,8 @@ this directory is here to store each fact in a single file so Ansible itself and other scripts can use them more easily. Also, if this directory needs to be restored, the full current Ansible playbook needs to be run + +## Scripts + +This directory contains scripts tracked by the repository to allow easier lookups in the given data by Ansible or other scripts. +Each script itself will contain a short description of its usage.