From 2a5a55a0d92efd31370607c48d81a622e72e4148 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Mon, 5 Jan 2015 11:53:21 +0100 Subject: [PATCH] Add a dummy ansible host file for syntax checking MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The Ansible YAML syntax checker needs an inventory file. Signed-off-by: Sébastien Han --- dummy-ansible-hosts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 dummy-ansible-hosts diff --git a/dummy-ansible-hosts b/dummy-ansible-hosts new file mode 100644 index 000000000..0f9fca8fc --- /dev/null +++ b/dummy-ansible-hosts @@ -0,0 +1,9 @@ +# Dummy ansible host file +# Used for syntax check +# Before committing code please run: ansible-playbook --syntax-check site.yml -i dummy-ansible-hosts +[mons] +127.0.0.1 +[osds] +127.0.0.1 +[mdss] +127.0.0.1 -- 2.47.3