forked from p15670423/monkey
20 lines
1007 B
Bash
20 lines
1007 B
Bash
#!/usr/bin/env bash
|
|
# Absolute monkey's path
|
|
MONKEY_FOLDER_NAME="infection_monkey"
|
|
# Url of public git repository that contains monkey's source code
|
|
MONKEY_GIT_URL="https://github.com/guardicore/monkey"
|
|
|
|
# Monkey binaries
|
|
LINUX_32_BINARY_URL="https://github.com/guardicore/monkey/releases/download/1.6/monkey-linux-32"
|
|
LINUX_32_BINARY_NAME="monkey-linux-32"
|
|
LINUX_64_BINARY_URL="https://github.com/guardicore/monkey/releases/download/1.6/monkey-linux-64"
|
|
LINUX_64_BINARY_NAME="monkey-linux-64"
|
|
WINDOWS_32_BINARY_URL="https://github.com/guardicore/monkey/releases/download/1.6/monkey-windows-32.exe"
|
|
WINDOWS_32_BINARY_NAME="monkey-windows-32.exe"
|
|
WINDOWS_64_BINARY_URL="https://github.com/guardicore/monkey/releases/download/1.6/monkey-windows-64.exe"
|
|
WINDOWS_64_BINARY_NAME="monkey-windows-64.exe"
|
|
|
|
# Mongo url's
|
|
MONGO_DEBIAN_URL="https://downloads.mongodb.org/linux/mongodb-linux-x86_64-debian81-latest.tgz"
|
|
MONGO_UBUNTU_URL="https://downloads.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-latest.tgz"
|