Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ URIs and resemble the following:
```
{
"STANDALONE": "mongodb:\/\/192.168.112.10:2000",
"STANDALONE_26": "mongodb:\/\/192.168.112.10:2600",
"STANDALONE_30": "mongodb:\/\/192.168.112.10:2700",
"STANDALONE_SSL": "mongodb:\/\/192.168.112.10:2100",
"STANDALONE_AUTH": "mongodb:\/\/root:toor@192.168.112.10:2200\/?authSource=admin",
Expand Down
7 changes: 2 additions & 5 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,10 @@ Vagrant.configure(2) do |config|
config.vm.define "mo", primary: true do |mo|
mo.vm.network "private_network", ip: "192.168.112.10"

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

mo.vm.provision "shell", path: "scripts/ubuntu/essentials.sh", privileged: true
mo.vm.provision "file", source: "scripts/ubuntu/get-pip.py", destination: "get-pip.py"
mo.vm.provision "file", source: "scripts/ubuntu/mongo-orchestration-config.json", destination: "mongo-orchestration-config.json"
mo.vm.provision "shell", path: "scripts/ubuntu/mongo-orchestration.sh", privileged: true
mo.vm.provision "shell", path: "scripts/ubuntu/ldap/install.sh", privileged: true
Expand Down
2 changes: 1 addition & 1 deletion bin/prep-release.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function get_files() {
"scripts/centos/ldap/users",
"scripts/presets/*.{json}",
"scripts/ssl/*.pem",
"scripts/*.{php,sh}",
"scripts/*.{json,php,py,sh}",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: json contains the mongo orchestration config and should have been included long ago.

"tests/utils/*.{inc,json.gz,php}",
"tests/**/*.{phpt}",
),
Expand Down
71 changes: 0 additions & 71 deletions scripts/presets/replicaset-36.json

This file was deleted.

15 changes: 0 additions & 15 deletions scripts/presets/standalone-26.json

This file was deleted.

2 changes: 1 addition & 1 deletion scripts/presets/standalone-ssl.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"setParameter": {"enableTestCommands": 1}
},
"sslParams": {
"sslMode": "requireSSL",
"sslMode": "requireSSL",
"sslCAFile": "/phongo/scripts/ssl/ca.pem",
"sslPEMKeyFile": "/phongo/scripts/ssl/server.pem",
"sslWeakCertificateValidation": true
Expand Down
2 changes: 1 addition & 1 deletion scripts/presets/standalone-x509.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"setParameter": {"enableTestCommands": 1, "authenticationMechanisms": "MONGODB-X509"}
},
"sslParams": {
"sslMode": "requireSSL",
"sslMode": "requireSSL",
"sslCAFile": "/phongo/scripts/ssl/ca.pem",
"sslPEMKeyFile": "/phongo/scripts/ssl/server.pem",
"sslWeakCertificateValidation": true
Expand Down
2 changes: 0 additions & 2 deletions scripts/start-servers.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ function lap() {
$PRESETS = [
"standalone" => [
"scripts/presets/standalone.json",
"scripts/presets/standalone-26.json",
"scripts/presets/standalone-30.json",
"scripts/presets/standalone-ssl.json",
"scripts/presets/standalone-auth.json",
Expand All @@ -29,7 +28,6 @@ function lap() {
"replicasets" => [
"scripts/presets/replicaset.json",
"scripts/presets/replicaset-30.json",
"scripts/presets/replicaset-36.json",
"scripts/presets/replicaset-dns.json",
],
];
Expand Down
Loading