From 5dd5919d2d04a752d91c8ea5e32e693929db27e6 Mon Sep 17 00:00:00 2001 From: Me1e Date: Wed, 12 Apr 2023 21:47:00 +0900 Subject: [PATCH] Fixed command typo in 2022 day64 "-m" was used instead of "--m" --- 2022/Days/day64.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2022/Days/day64.md b/2022/Days/day64.md index 59c6cb6..a235bce 100644 --- a/2022/Days/day64.md +++ b/2022/Days/day64.md @@ -37,7 +37,7 @@ Before we then start to look at controlling other nodes in our environment, we c ![](Images/Day64_config2.png) -Or an actual real-life use for a module might be something like `ansible webservers --m service -a "name=httpd state=started"` this will tell us if all of our webservers have the httpd service running. I have glossed over the webservers term used in that command. +Or an actual real-life use for a module might be something like `ansible webservers -m service -a "name=httpd state=started"` this will tell us if all of our webservers have the httpd service running. I have glossed over the webservers term used in that command. ### hosts