mirror of
https://github.com/peterbraden/node-opencv.git
synced 2025-12-08 19:45:55 +00:00
24 lines
470 B
Bash
Executable File
24 lines
470 B
Bash
Executable File
#!/bin/bash
|
|
apt-get update
|
|
apt-get upgrade -y
|
|
|
|
#INSTALL BASE
|
|
chmod +x "/vagrant/scripts/base.sh"
|
|
$include "/vagrant/scripts/base.sh"
|
|
|
|
#COMMENT OUT OR IN LINES AS APPROPRIATE
|
|
INCLUDED_TECH=()
|
|
INCLUDED_TECH+=("node")
|
|
|
|
SCRIPT_LOCATION="/vagrant/scripts/setup-"
|
|
|
|
for i in ${INCLUDED_TECH[@]}; do
|
|
chmod +x "${SCRIPT_LOCATION}${i}.sh"
|
|
$include "${SCRIPT_LOCATION}${i}.sh"
|
|
done
|
|
|
|
echo "Base Setup Done!"
|
|
ls
|
|
#INSTALL USER
|
|
chmod +x "/vagrant/user.sh"
|
|
$include "/vagrant/user.sh" |