Last active
August 29, 2015 14:15
-
-
Save ay65535/a67d4f5c21cd79639cbf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo adduser $1 | |
sudo usermod -a -G adm $1 | |
sudo usermod -a -G sudo $1 | |
sudo usermod -a -G cdrom $1 | |
sudo usermod -a -G dip $1 | |
sudo usermod -a -G plugdev $1 | |
sudo usermod -a -G lpadmin $1 | |
sudo usermod -a -G sambashare $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment