diff --git a/README.md b/README.md index 41dedf8..f1cd9c2 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,9 @@ Bootstrap checklist: sudo tee /etc/sudoers.d/30-ansible <<<"ansible ALL=(ALL) NOPASSWD:ALL" ``` -5. Change the UID of the `ansible` user to `1400` with this command: +5. Change the UID/GID of the `ansible` user/group to `1400` with these commands: ```bash sudo usermod -u 1400 ansible +sudo groupmod -g 1400 ansible ```