forked from p15670423/monkey
Remove logic for creating default server config in appimage script
This commit is contained in:
parent
af42c01aa9
commit
ff1e6bdb2c
|
@ -3,20 +3,12 @@
|
||||||
PYTHON_CMD="$APPDIR"/opt/python3.7/bin/python3.7
|
PYTHON_CMD="$APPDIR"/opt/python3.7/bin/python3.7
|
||||||
DOT_MONKEY="$HOME"/.monkey_island/
|
DOT_MONKEY="$HOME"/.monkey_island/
|
||||||
|
|
||||||
configure_default_server() {
|
|
||||||
if [ ! -f "$DOT_MONKEY"/server_config.json ]; then
|
|
||||||
cp "$APPDIR"/usr/src/monkey_island/cc/server_config.json.standard "$DOT_MONKEY"/server_config.json
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# shellcheck disable=SC2174
|
# shellcheck disable=SC2174
|
||||||
mkdir --mode=0700 --parents "$DOT_MONKEY"
|
mkdir --mode=0700 --parents "$DOT_MONKEY"
|
||||||
|
|
||||||
DB_DIR="$DOT_MONKEY"/db
|
DB_DIR="$DOT_MONKEY"/db
|
||||||
mkdir --parents "$DB_DIR"
|
mkdir --parents "$DB_DIR"
|
||||||
|
|
||||||
configure_default_server
|
|
||||||
|
|
||||||
cd "$APPDIR"/usr/src || exit 1
|
cd "$APPDIR"/usr/src || exit 1
|
||||||
./monkey_island/bin/mongodb/bin/mongod --dbpath "$DB_DIR" &
|
./monkey_island/bin/mongodb/bin/mongod --dbpath "$DB_DIR" &
|
||||||
${PYTHON_CMD} ./monkey_island.py --server-config "$DOT_MONKEY"/server_config.json
|
${PYTHON_CMD} ./monkey_island.py --server-config "$DOT_MONKEY"/server_config.json
|
||||||
|
|
Loading…
Reference in New Issue