wthiel / Ubuntu User Setup Script
0 likes
0 forks
2 files
Last active 4 months ago
Creates user account, sets up SSH keys from GitHub, and optionally grants sudo privileges
| 1 | #!/bin/bash |
| 2 | |
| 3 | # Ubuntu User Setup Script |
| 4 | # Creates user account, sets up SSH keys from GitHub, and optionally grants sudo privileges |
| 5 | # Must be run as root |
| 6 | |
| 7 | set -e # Exit on any error |
| 8 | |
| 9 | # Color codes for output |
| 10 | RED='\033[0;31m' |
Newer
Older