-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sh
22 lines (18 loc) · 1.04 KB
/
config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
###########################################################################
# IMPORTANT: EDIT THE FIELDS BELOW TO MATCH YOUR SYSTEM
###########################################################################
# A device path pointing to the bitlocker-encrypted partition
# Replace <PARTUUID> with the UUID of the PARTITION (NOT the disk)
# that you are trying to decrypt, or another unique device identifier
# for that same partition
export BITLOCKER_PARTITION='/dev/disk/by-partuuid/<PARTUUID>'
# Set this value to the path of your actual bash shell with -c flag
# An easy way to figure this path out is by running `which bash`
export EXEC_SHELL="`which bash` -c"
# Make sure this is the directory where you want to store the link
# to the executable. This is where the executable script is stored.
export BIN_PATH='/usr/local/bin'
# Runtime root directory. This should be someplace accessible
# by the user who will be running the program, and it should
# be located on a filesystem mounted with execute permission.
export RUNTIME_ROOT_DIR="/opt/$USER/src/mw"