From 1f894f2527bb42969a9af190469ceb8594ea9bdd Mon Sep 17 00:00:00 2001 From: Adw8 Date: Tue, 3 Sep 2024 16:17:13 +0530 Subject: [PATCH] Reword instruction in README --- nitro-node-setup/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nitro-node-setup/README.md b/nitro-node-setup/README.md index 532aa27..33ce7aa 100644 --- a/nitro-node-setup/README.md +++ b/nitro-node-setup/README.md @@ -50,13 +50,13 @@ The following commands have to be executed in [`nitro-node-setup`](./) directory - To run a nitro node, execute the `run-nitro-node.yml` Ansible playbook by running the following command. - NOTE: By default, deployments are created in the `nitro-node-setup/out` directory. To change this location update the `nitro_directory` variable in the [setup-vars.yml](./setup-vars.yml) file. + NOTE: By default, deployments are created in the `nitro-node-setup/out` directory. To change this location, update the `nitro_directory` variable in the [setup-vars.yml](./setup-vars.yml) file. ```bash LANG=en_US.utf8 ansible-playbook -i localhost, --connection=local run-nitro-node.yml --extra-vars='{ "target_host": "localhost"}' --user $USER ``` - - If you want to skip building the containers, set `"skip_container_build" : true` in the `--extra-vars` parameter: + - For skipping container build, run with `"skip_container_build" : true` in the `--extra-vars` parameter: ```bash LANG=en_US.utf8 ansible-playbook -i localhost, --connection=local run-nitro-node.yml --extra-vars='{ "target_host": "localhost", "skip_container_build": true }' --user $USER