1
0
Fork 0
mirror of https://gitlab.com/Shinobi-Systems/ShinobiCE.git synced 2025-03-09 15:40:15 +00:00

Shinobi CE officially lands on Gitlab

This commit is contained in:
Moe 2018-06-07 23:21:38 -07:00
commit f1406d4eec
431 changed files with 118157 additions and 0 deletions

33
INSTALL/now.sh Normal file
View file

@ -0,0 +1,33 @@
#!/bin/bash
echo "Shinobi Installer"
echo "========"
echo "Select your OS"
echo "If your OS is not on the list please refer to the docs."
echo "========"
echo "1. Ubuntu"
echo "2. CentOS"
echo "3. MacOS"
echo "4. FreeBSD"
echo "========"
read oschoicee
case $oschoicee in
"1")
chmod +x INSTALL/ubuntu.sh
sh INSTALL/ubuntu.sh
;;
"2")
chmod +x INSTALL/centos.sh
INSTALL/centos.sh
;;
"3")
chmod +x INSTALL/macos.sh
INSTALL/macos.sh
;;
"4")
chmod +x INSTALL/freebsd.sh
INSTALL/freebsd.sh
;;
*)
echo "Choice not found."
;;
esac