From def3fbdbf022bb7bcb2bea0902d791287b836545 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Fri, 29 Jan 2021 09:32:11 +0200 Subject: fix: README instructions for using the Ansible playbook --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index af9d6e1..cba9db8 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ following commands in the Obnam source tree, replacing ```sh $ cd ansible -$ printf '[obnam-server]\nobnam.example.com\n' > hosts +$ printf '[server]\nobnam.example.com\n' > hosts $ ansible-playbook -i hosts obnam-server.yml -e domain=obnam.example.com ``` @@ -29,7 +29,7 @@ private host use the following instead: ```sh $ cd ansible -$ printf '[obnam-server]\nprivate-vm\n' > hosts +$ printf '[server]\nprivate-vm\n' > hosts $ ansible-playbook -i hosts obnam-server.yml ``` -- cgit v1.2.1 From 6854f65b6eb2d1bae3bae5d2a43d4eb3b7ac13f5 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Fri, 29 Jan 2021 09:32:36 +0200 Subject: fix: group name in the sample hosts file for Ansible --- ansible/hosts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/hosts b/ansible/hosts index 253d739..136086c 100644 --- a/ansible/hosts +++ b/ansible/hosts @@ -1,2 +1,2 @@ -[obnam-server] +[server] obnam-server -- cgit v1.2.1