One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| #!/bin/bash | |
| # | |
| # Initial script to create users when launching an Ubuntu server EC2 instance | |
| # | |
| declare -A USERKEY | |
| # | |
| # Create one entry for every user who needs access. Be sure to change the key to their |
| #!/bin/bash | |
| sudo snap remove snap-store -y | |
| sudo snap remove gtk-common-themes -y | |
| sudo snap remove gnome-3-34-1804 -y | |
| sudo snap remove core18 -y | |
| sudo apt purge snapd -y | |
| echo "Snap and Snapd are removed!" | |
| sudo apt-mark hold snap snapd | |
| echo "Snap/Snapd are now blocked from Ubuntu!" | |
| echo "The unhelpful help app is removed!" |