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

14 lines
206 B
Bash
Raw Normal View History

#!/bin/bash
# Elevate script
if [ ! "$UID" -eq 0 ]
then
sudo bash "$BASH_SOURCE";
else
2023-01-23 15:16:26 +00:00
apt install -y \
docker.io \
docker-compose \
screen \
steam \
vim;
fi