skylab
/
skylab-ansible
Archived
2
0
Fork 0

Fix bootstrap instructions to include group id

This commit is contained in:
Ethan Paul 2021-11-06 20:46:32 -04:00
parent b4f9fba952
commit 2cff4e4354
No known key found for this signature in database
GPG Key ID: 6A337337DF6B5B1A
1 changed files with 2 additions and 1 deletions

View File

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