I was doing this a different way that seemed to work, but I'm not sure it was correct.
The usermod function allows you to modify an existing user. Useful for adding your user to another group on the system.
To add the user to supplemental group:
usermod -a -G groupname username
To modify your user's primary group:
usermod -g groupname username
No Comments