1
0
Fork 0
linux-conf/install.sh

14 lines
265 B
Bash
Raw Normal View History

#!/bin/bash
OS_NAME=`cat /etc/os-release | grep "^NAME=" | sed 's/NAME=//g'`
OS_NAME=${OS_NAME^^} # UPPERCASE
case $OS_NAME in
"UBUNTU")
source ./install_scripts/ubuntu.sh
start
;;
*)
echo "OS not supported"
;;
esac