Create install-pgcg-rpisc.sh

This commit is contained in:
2022-05-15 19:06:24 -05:00
parent dc4b442da0
commit 612a414635

25
install-pgcg-rpisc.sh Executable file
View File

@@ -0,0 +1,25 @@
#!/usr/bin/env bash
source /dev/stdin <<< "$(curl -sL http://go.scity.us/colorsinc)"
echo ""
echo -e "${idsCL[LightGreen]}PGCG Rpi-SC Installation Script${idsCL[Default]}"
echo ""
sudo $APTFUNC -y install wget curl git
sudo set -eu
sudo git clone https://git.schroedercity.com/voltron/PGCG-RPiSC-Installer.git /opt/PGCG-RPiSC-Installer
echo ""
cd /opt/PGCG-RPiSC-Installer
bash ./install.sh
echo ""
echo -e "${idsCL[Yellow]}PGCG Rpi-SC has been Installed${idsCL[Default]}"
echo ""
exit 0