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

14 lines
206 B
Bash
Executable file

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