-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup
More file actions
executable file
·25 lines (16 loc) · 796 Bytes
/
setup
File metadata and controls
executable file
·25 lines (16 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash -ae
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
SOURCE="$(readlink "$SOURCE")"
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
SALT_HOME="${SALT_HOME:-$DIR}"
ACTIVATE=$HOME/bin/activate-saltstack-env
echo "##> SALT_HOME=$SALT_HOME"
[ -e $ACTIVATE ] || ( echo "##> no current environment found" )
cd $SALT_HOME
./INSTALL.sh
[ -e $ACTIVATE ] && ( echo "##> ~/.bash_profile will source the custom environment with ${ACTIVATE}" )
echo "##> start services with ${SALT_HOME}/bin/start-services"