Fixed command typo in 2022 day64

"-m" was used instead of "--m"
This commit is contained in:
Me1e 2023-04-12 21:47:00 +09:00 committed by GitHub
parent b4cce067b4
commit 5dd5919d2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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