From 53db037b27c2ba014253d31276d46f81868a76f2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Fri, 7 Oct 2016 11:04:38 +0200 Subject: [PATCH] generate_group_vars: add ceph-fetch-keys MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Sébastien Han --- generate_group_vars_sample.sh | 2 +- group_vars/ceph-fetch-keys.sample | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 group_vars/ceph-fetch-keys.sample diff --git a/generate_group_vars_sample.sh b/generate_group_vars_sample.sh index 173c85c37..420370565 100755 --- a/generate_group_vars_sample.sh +++ b/generate_group_vars_sample.sh @@ -11,7 +11,7 @@ for role in "$basedir"/roles/ceph-*; do elif [[ $rolename == "ceph-agent" ]]; then output="agent.sample" elif [[ $rolename == "ceph-fetch-keys" ]]; then - continue + output="ceph-fetch-keys.sample" else output="${rolename:5}s.sample" fi diff --git a/group_vars/ceph-fetch-keys.sample b/group_vars/ceph-fetch-keys.sample new file mode 100644 index 000000000..ceb397202 --- /dev/null +++ b/group_vars/ceph-fetch-keys.sample @@ -0,0 +1,12 @@ +--- +# Variables here are applicable to all host groups NOT roles + +# This sample file generated by generate_group_vars_sample.sh + +# Dummy variable to avoid error because ansible does not recognize the +# file as a good configuration file when no variable in it. +dummy: + + +#fetch_directory: fetch/ + -- 2.39.5