PortValhalla/scripts/Software/common-apt/install.sh

9 lines
156 B
Bash
Raw Normal View History

#!/bin/bash
# Elevate script
if [ ! "$UID" -eq 0 ]
then
sudo bash "$BASH_SOURCE";
else
apt install -y screen steam vim docker.io docker-compose;
fi