2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-11-12 00:17:00 +00:00
|
|
|
require 'hardware'
|
2009-09-05 22:14:47 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mongodb < Formula
|
2009-10-01 20:18:01 +00:00
|
|
|
homepage 'http://www.mongodb.org/'
|
2009-10-27 20:20:28 +00:00
|
|
|
|
2011-08-28 18:50:34 +00:00
|
|
|
if ARGV.build_head?
|
|
|
|
packages = {
|
|
|
|
:x86_64 => {
|
2011-09-07 16:59:22 +00:00
|
|
|
:url => 'http://fastdl.mongodb.org/osx/mongodb-osx-x86_64-2.0.0-rc2.tgz',
|
|
|
|
:md5 => '9e9185524c695055bd9d86bdb98b5b9b',
|
|
|
|
:version => '2.0.0-rc2-x86_64'
|
2011-08-28 18:50:34 +00:00
|
|
|
},
|
|
|
|
:i386 => {
|
2011-09-07 16:59:22 +00:00
|
|
|
:url => 'http://fastdl.mongodb.org/osx/mongodb-osx-i386-2.0.0-rc2.tgz',
|
|
|
|
:md5 => '9afdabf654d3965c6c0bfd3e032b830e',
|
|
|
|
:version => '2.0.0-rc2-i386'
|
2011-08-28 18:50:34 +00:00
|
|
|
}
|
2011-03-12 20:04:52 +00:00
|
|
|
}
|
2011-08-28 18:50:34 +00:00
|
|
|
else
|
|
|
|
packages = {
|
|
|
|
:x86_64 => {
|
|
|
|
:url => 'http://fastdl.mongodb.org/osx/mongodb-osx-x86_64-1.8.3.tgz',
|
|
|
|
:md5 => '8bdb3e110d6391d66379c5425c1c4e6e',
|
|
|
|
:version => '1.8.3-x86_64'
|
|
|
|
},
|
|
|
|
:i386 => {
|
|
|
|
:url => 'http://fastdl.mongodb.org/osx/mongodb-osx-i386-1.8.3.tgz',
|
|
|
|
:md5 => '5629e49d6d24a99850fb094efb98685c',
|
|
|
|
:version => '1.8.3-i386'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
2009-12-28 20:46:22 +00:00
|
|
|
|
2011-03-12 20:04:52 +00:00
|
|
|
package = (Hardware.is_64_bit? and not ARGV.include? '--32bit') ? packages[:x86_64] : packages[:i386]
|
|
|
|
|
|
|
|
url package[:url]
|
|
|
|
md5 package[:md5]
|
|
|
|
version package[:version]
|
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
skip_clean :all
|
2009-09-05 22:14:47 +00:00
|
|
|
|
2010-08-10 20:05:20 +00:00
|
|
|
def options
|
2011-03-16 19:43:51 +00:00
|
|
|
[
|
|
|
|
['--32bit', 'Override arch detection and install the 32-bit version.'],
|
|
|
|
['--nojournal', 'Disable write-ahead logging (Journaling)'],
|
|
|
|
['--rest', 'Enable the REST Interface on the HTTP Status Page'],
|
|
|
|
]
|
2010-08-10 20:05:20 +00:00
|
|
|
end
|
|
|
|
|
2009-09-05 22:14:47 +00:00
|
|
|
def install
|
2009-12-28 20:46:22 +00:00
|
|
|
# Copy the prebuilt binaries to prefix
|
2010-04-07 05:58:35 +00:00
|
|
|
prefix.install Dir['*']
|
2009-12-28 20:46:22 +00:00
|
|
|
|
|
|
|
# Create the data and log directories under /var
|
|
|
|
(var+'mongodb').mkpath
|
|
|
|
(var+'log/mongodb').mkpath
|
|
|
|
|
|
|
|
# Write the configuration files and launchd script
|
|
|
|
(prefix+'mongod.conf').write mongodb_conf
|
|
|
|
(prefix+'org.mongodb.mongod.plist').write startup_plist
|
2011-09-02 21:41:57 +00:00
|
|
|
(prefix+'org.mongodb.mongod.plist').chmod 0644
|
2009-12-28 20:46:22 +00:00
|
|
|
end
|
|
|
|
|
2011-03-16 19:43:51 +00:00
|
|
|
def caveats
|
|
|
|
s = ""
|
|
|
|
s += <<-EOS.undent
|
2011-03-12 20:04:52 +00:00
|
|
|
If this is your first install, automatically load on login with:
|
|
|
|
mkdir -p ~/Library/LaunchAgents
|
|
|
|
cp #{prefix}/org.mongodb.mongod.plist ~/Library/LaunchAgents/
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/org.mongodb.mongod.plist
|
2010-05-09 00:59:07 +00:00
|
|
|
|
2011-03-12 20:04:52 +00:00
|
|
|
If this is an upgrade and you already have the org.mongodb.mongod.plist loaded:
|
|
|
|
launchctl unload -w ~/Library/LaunchAgents/org.mongodb.mongod.plist
|
|
|
|
cp #{prefix}/org.mongodb.mongod.plist ~/Library/LaunchAgents/
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/org.mongodb.mongod.plist
|
2009-12-28 20:46:22 +00:00
|
|
|
|
2011-03-12 20:04:52 +00:00
|
|
|
Or start it manually:
|
|
|
|
mongod run --config #{prefix}/mongod.conf
|
|
|
|
EOS
|
2011-03-16 19:43:51 +00:00
|
|
|
|
|
|
|
if ARGV.include? "--nojournal"
|
|
|
|
s += ""
|
|
|
|
s += <<-EOS.undent
|
|
|
|
Write Ahead logging (Journaling) has been disabled.
|
|
|
|
EOS
|
|
|
|
else
|
|
|
|
s += ""
|
|
|
|
s += <<-EOS.undent
|
|
|
|
MongoDB 1.8+ includes a feature for Write Ahead Logging (Journaling), which has been enabled by default.
|
|
|
|
This is not the default in production (Journaling is disabled); to disable journaling, use --nojournal.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
return s
|
2009-12-28 20:46:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def mongodb_conf
|
2011-03-16 19:43:51 +00:00
|
|
|
conf = ""
|
|
|
|
conf += <<-EOS.undent
|
|
|
|
# Store data in #{var}/mongodb instead of the default /data/db
|
|
|
|
dbpath = #{var}/mongodb
|
2009-12-28 20:46:22 +00:00
|
|
|
|
2011-03-16 19:43:51 +00:00
|
|
|
# Only accept local connections
|
|
|
|
bind_ip = 127.0.0.1
|
|
|
|
EOS
|
|
|
|
|
2011-08-28 18:50:34 +00:00
|
|
|
if ARGV.build_head?
|
|
|
|
if ARGV.include? '--nojournal'
|
|
|
|
conf += <<-EOS.undent
|
|
|
|
# Enable Write Ahead Logging (not enabled by default in production deployments)
|
|
|
|
nojournal = true
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
else
|
|
|
|
unless ARGV.include? '--nojournal'
|
2011-03-16 19:43:51 +00:00
|
|
|
conf += <<-EOS.undent
|
|
|
|
# Enable Write Ahead Logging (not enabled by default in production deployments)
|
|
|
|
journal = true
|
|
|
|
EOS
|
2011-08-28 18:50:34 +00:00
|
|
|
end
|
2011-03-16 19:43:51 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if ARGV.include? '--rest'
|
|
|
|
conf += <<-EOS.undent
|
|
|
|
# Enable the REST interface on the HTTP Console (startup port + 1000)
|
|
|
|
rest = true
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
return conf
|
2009-12-28 20:46:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def startup_plist
|
|
|
|
return <<-EOS
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>org.mongodb.mongod</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
|
|
|
<string>#{bin}/mongod</string>
|
|
|
|
<string>run</string>
|
|
|
|
<string>--config</string>
|
|
|
|
<string>#{prefix}/mongod.conf</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>KeepAlive</key>
|
2011-03-16 19:43:51 +00:00
|
|
|
<false/>
|
2009-12-28 20:46:22 +00:00
|
|
|
<key>UserName</key>
|
2010-01-16 15:48:56 +00:00
|
|
|
<string>#{`whoami`.chomp}</string>
|
2009-12-28 20:46:22 +00:00
|
|
|
<key>WorkingDirectory</key>
|
|
|
|
<string>#{HOMEBREW_PREFIX}</string>
|
|
|
|
<key>StandardErrorPath</key>
|
|
|
|
<string>#{var}/log/mongodb/output.log</string>
|
|
|
|
<key>StandardOutPath</key>
|
|
|
|
<string>#{var}/log/mongodb/output.log</string>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
2009-09-05 22:14:47 +00:00
|
|
|
end
|
2011-03-10 05:11:03 +00:00
|
|
|
end
|