diff --git a/README.md b/README.md index b63be4b..806af49 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ It is basically a built for the latest MongoDB for Debian. **Unfortunately, I never tested it on any other architecture, but `x64`, so, it is possible it will not build other CPU types. [See this link.](https://docs.mongodb.com/manual/installation/#mongodb-supported-platforms)** -The current version is the r4.0.12 build (release). +The current version is the r4.0.13 build (release). There is a newer version `4.1.0`, but given, we use `NoSQLBooster`, it only works with `4.0.0` and the `4.0.x` is the stable, the next stable will be `4.2.0`, `4.4.0` and so on... @@ -56,9 +56,9 @@ All defaults are in the config, that MongoDB uses: It generates everything, all you have to do: ```bash -sudo ./scripts/build-server.sh r4.0.12 +sudo ./scripts/build-server.sh r4.0.13 # if you want to specify how many cores you wanna use do like -sudo CORES=4 ./scripts/build-server.sh r4.0.12 +sudo CORES=4 ./scripts/build-server.sh r4.0.13 ``` ### 2. Build MongoDB Tools @@ -75,7 +75,7 @@ Then, it puts all tools into the default Debian ```/usr/bin``` directories. The exact command is like: ```bash -sudo ./scripts/build-tools.sh r4.0.12 +sudo ./scripts/build-tools.sh r4.0.13 ``` ### 3. Start the services diff --git a/scripts/build-server.sh b/scripts/build-server.sh index 1cb26f1..c4662b3 100755 --- a/scripts/build-server.sh +++ b/scripts/build-server.sh @@ -10,7 +10,7 @@ set -e # some info echo #echo "Works like command, use a tag: sudo ./scripts/build-server.sh r4.2.0" -echo "Works like command, use a tag: sudo ./scripts/build-server.sh r4.0.12" +echo "Works like command, use a tag: sudo ./scripts/build-server.sh r4.0.13" echo # check if we are root @@ -35,7 +35,7 @@ fi # require mongo release if [ -z "${1}" ]; then - echo "The first argument must be the MONGODB_RELEASE for example 'r4.0.12'" + echo "The first argument must be the MONGODB_RELEASE for example 'r4.0.13'" exit 1 fi MONGODB_RELEASE="${1}" @@ -86,7 +86,7 @@ pushd $BUILD # hack to old version python pip cryptography from 1.7.2 to use the latest sed -i 's#cryptography == 1.7.2#\#cryptography == 1.7.2#g' buildscripts/requirements.txt - # this is only because 4.0.12 uses 1.7.2 and + # this is only because 4.0.13 uses 1.7.2 and # https://github.com/pyca/cryptography/issues/4193#issuecomment-381236459 # support minimum latest (2.2) pip install cryptography diff --git a/scripts/build-tools.sh b/scripts/build-tools.sh index ebe80f6..ffb6181 100755 --- a/scripts/build-tools.sh +++ b/scripts/build-tools.sh @@ -9,7 +9,7 @@ set -e # some info echo -echo "Works like command: sudo ./scripts/build-tools.sh r4.0.12" +echo "Works like command: sudo ./scripts/build-tools.sh r4.0.13" echo # check if we are root @@ -20,7 +20,7 @@ fi # require mongo release if [ -z "${1}" ]; then - echo "The first argument must be the MONGODB_RELEASE for example 'r4.0.12'" + echo "The first argument must be the MONGODB_RELEASE for example 'r4.0.13'" exit 1 fi MONGODB_RELEASE="${1}"