Skip to content

Commit 1332775

Browse files
committed
Merge pull request #728
2 parents e112b98 + f21ef4d commit 1332775

13 files changed

+20089
-129
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ URIs and resemble the following:
3030
```
3131
{
3232
"STANDALONE": "mongodb:\/\/192.168.112.10:2000",
33-
"STANDALONE_26": "mongodb:\/\/192.168.112.10:2600",
3433
"STANDALONE_30": "mongodb:\/\/192.168.112.10:2700",
3534
"STANDALONE_SSL": "mongodb:\/\/192.168.112.10:2100",
3635
"STANDALONE_AUTH": "mongodb:\/\/root:[email protected]:2200\/?authSource=admin",

Vagrantfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,10 @@ Vagrant.configure(2) do |config|
1818
config.vm.define "mo", primary: true do |mo|
1919
mo.vm.network "private_network", ip: "192.168.112.10"
2020

21-
mo.vm.box = "http://files.vagrantup.com/precise64.box"
22-
mo.vm.provider "vmware_workstation" do |vmware, override|
23-
override.vm.box_url = 'http://files.vagrantup.com/precise64_vmware.box'
24-
override.vm.provision "shell", path: "scripts/vmware/kernel.sh", privileged: true
25-
end
21+
mo.vm.box = "ubuntu/trusty64"
2622

2723
mo.vm.provision "shell", path: "scripts/ubuntu/essentials.sh", privileged: true
24+
mo.vm.provision "file", source: "scripts/ubuntu/get-pip.py", destination: "get-pip.py"
2825
mo.vm.provision "file", source: "scripts/ubuntu/mongo-orchestration-config.json", destination: "mongo-orchestration-config.json"
2926
mo.vm.provision "shell", path: "scripts/ubuntu/mongo-orchestration.sh", privileged: true
3027
mo.vm.provision "shell", path: "scripts/ubuntu/ldap/install.sh", privileged: true

bin/prep-release.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function get_files() {
6262
"scripts/centos/ldap/users",
6363
"scripts/presets/*.{json}",
6464
"scripts/ssl/*.pem",
65-
"scripts/*.{php,sh}",
65+
"scripts/*.{json,php,py,sh}",
6666
"tests/utils/*.{inc,json.gz,php}",
6767
"tests/**/*.{phpt}",
6868
),

scripts/presets/replicaset-36.json

Lines changed: 0 additions & 71 deletions
This file was deleted.

scripts/presets/standalone-26.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

scripts/presets/standalone-ssl.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"setParameter": {"enableTestCommands": 1}
1212
},
1313
"sslParams": {
14-
"sslMode": "requireSSL",
14+
"sslMode": "requireSSL",
1515
"sslCAFile": "/phongo/scripts/ssl/ca.pem",
1616
"sslPEMKeyFile": "/phongo/scripts/ssl/server.pem",
1717
"sslWeakCertificateValidation": true

scripts/presets/standalone-x509.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"setParameter": {"enableTestCommands": 1, "authenticationMechanisms": "MONGODB-X509"}
1414
},
1515
"sslParams": {
16-
"sslMode": "requireSSL",
16+
"sslMode": "requireSSL",
1717
"sslCAFile": "/phongo/scripts/ssl/ca.pem",
1818
"sslPEMKeyFile": "/phongo/scripts/ssl/server.pem",
1919
"sslWeakCertificateValidation": true

scripts/start-servers.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ function lap() {
1919
$PRESETS = [
2020
"standalone" => [
2121
"scripts/presets/standalone.json",
22-
"scripts/presets/standalone-26.json",
2322
"scripts/presets/standalone-30.json",
2423
"scripts/presets/standalone-ssl.json",
2524
"scripts/presets/standalone-auth.json",
@@ -29,7 +28,6 @@ function lap() {
2928
"replicasets" => [
3029
"scripts/presets/replicaset.json",
3130
"scripts/presets/replicaset-30.json",
32-
"scripts/presets/replicaset-36.json",
3331
"scripts/presets/replicaset-dns.json",
3432
],
3533
];

0 commit comments

Comments
 (0)