Skip to content

Instantly share code, notes, and snippets.

View rbekeris's full-sized avatar
🤖

Reinis Bekeris rbekeris

🤖
View GitHub Profile
@rbekeris
rbekeris / post_install.sh
Created February 23, 2020 14:13 — forked from waleedahmad/post_install.sh
Ubuntu post installation script for installing software of your choice.
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
else
#Update and Upgrade
echo "Updating and Upgrading"
apt-get update && sudo apt-get upgrade -y