Skip to content
This repository was archived by the owner on Sep 5, 2021. It is now read-only.

Commit 5f678f3

Browse files
committed
robo8x [chore] 10/15/2019, 10:17:06 AM
1 parent 1c3f11f commit 5f678f3

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ It is basically a built for the latest MongoDB for Debian.
1414

1515
**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)**
1616

17-
The current version is the r4.0.12 build (release).
17+
The current version is the r4.0.13 build (release).
1818

1919
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...
2020

@@ -56,9 +56,9 @@ All defaults are in the config, that MongoDB uses:
5656
It generates everything, all you have to do:
5757

5858
```bash
59-
sudo ./scripts/build-server.sh r4.0.12
59+
sudo ./scripts/build-server.sh r4.0.13
6060
# if you want to specify how many cores you wanna use do like
61-
sudo CORES=4 ./scripts/build-server.sh r4.0.12
61+
sudo CORES=4 ./scripts/build-server.sh r4.0.13
6262
```
6363

6464
### 2. Build MongoDB Tools
@@ -75,7 +75,7 @@ Then, it puts all tools into the default Debian ```/usr/bin``` directories.
7575

7676
The exact command is like:
7777
```bash
78-
sudo ./scripts/build-tools.sh r4.0.12
78+
sudo ./scripts/build-tools.sh r4.0.13
7979
```
8080

8181
### 3. Start the services

scripts/build-server.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set -e
1010
# some info
1111
echo
1212
#echo "Works like command, use a tag: sudo ./scripts/build-server.sh r4.2.0"
13-
echo "Works like command, use a tag: sudo ./scripts/build-server.sh r4.0.12"
13+
echo "Works like command, use a tag: sudo ./scripts/build-server.sh r4.0.13"
1414
echo
1515

1616
# check if we are root
@@ -35,7 +35,7 @@ fi
3535

3636
# require mongo release
3737
if [ -z "${1}" ]; then
38-
echo "The first argument must be the MONGODB_RELEASE for example 'r4.0.12'"
38+
echo "The first argument must be the MONGODB_RELEASE for example 'r4.0.13'"
3939
exit 1
4040
fi
4141
MONGODB_RELEASE="${1}"
@@ -86,7 +86,7 @@ pushd $BUILD
8686

8787
# hack to old version python pip cryptography from 1.7.2 to use the latest
8888
sed -i 's#cryptography == 1.7.2#\#cryptography == 1.7.2#g' buildscripts/requirements.txt
89-
# this is only because 4.0.12 uses 1.7.2 and
89+
# this is only because 4.0.13 uses 1.7.2 and
9090
# https://github.com/pyca/cryptography/issues/4193#issuecomment-381236459
9191
# support minimum latest (2.2)
9292
pip install cryptography

scripts/build-tools.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -e
99

1010
# some info
1111
echo
12-
echo "Works like command: sudo ./scripts/build-tools.sh r4.0.12"
12+
echo "Works like command: sudo ./scripts/build-tools.sh r4.0.13"
1313
echo
1414

1515
# check if we are root
@@ -20,7 +20,7 @@ fi
2020

2121
# require mongo release
2222
if [ -z "${1}" ]; then
23-
echo "The first argument must be the MONGODB_RELEASE for example 'r4.0.12'"
23+
echo "The first argument must be the MONGODB_RELEASE for example 'r4.0.13'"
2424
exit 1
2525
fi
2626
MONGODB_RELEASE="${1}"

0 commit comments

Comments
 (0)