forked from hackedteam/rcs-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrcs-db-mongoc
executable file
·39 lines (29 loc) · 999 Bytes
/
rcs-db-mongoc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env ruby
require 'rbconfig'
# ensure the working dir is correct
Dir.chdir File.dirname(File.dirname(File.realpath(__FILE__)))
# select the correct dir based upon the platform we are running on
case RbConfig::CONFIG['host_os']
when /darwin/
os = 'macos'
ext = ''
when /mingw/
os = 'win'
ext = '.exe'
end
datadir = Dir.pwd + '/data'
configdir = datadir + '/config'
logdir = Dir.pwd + '/log'
# ensure the data and config directories are present
Dir::mkdir(datadir) if not File.directory?(datadir)
Dir::mkdir(configdir) if not File.directory?(configdir)
Dir::mkdir(logdir) if not File.directory?(logdir)
keyfile = Dir.pwd + '/config/mongodb.key'
# the mongod executable
mongod = Dir.pwd + '/mongodb/' + os + '/mongod' + ext
# the data path
parameters = "--dbpath #{configdir} --nssize 64 --logpath #{logdir}/mongoc.log --configsvr --rest --keyFile #{keyfile}"
# custom arguments
custom = ARGV.join(' ')
# execute it
exec mongod + ' ' + parameters + ' ' + custom