From 0f0731d800b9fa24addccc55d78ee8780f679b0a Mon Sep 17 00:00:00 2001 From: Alexander Dahl Date: Fri, 22 Jul 2022 06:52:02 +0200 Subject: [PATCH] inventory: Rename file to add file extension This is a YAML file, make ansible-lint (and me) happy and add a proper file extension. Also helps editors to pick correct syntax highlighting. --- README.md | 2 +- inventory => inventory.yml | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename inventory => inventory.yml (100%) diff --git a/README.md b/README.md index f2ecf45..bd154fc 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ ansible-galaxy install -r requirements.yml ## Call with ```bash -ansible-playbook -i inventory --ask-vault-pass main.yml +ansible-playbook -i inventory.yml --ask-vault-pass main.yml ``` You need to provide a user with sudo rights and the vault password. diff --git a/inventory b/inventory.yml similarity index 100% rename from inventory rename to inventory.yml