Created
December 2, 2011 03:04
-
-
Save dakatsuka/1421539 to your computer and use it in GitHub Desktop.
MongoDBをインストールするためのChefレシピ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
script "add key" do | |
interpreter "bash" | |
user "root" | |
not_if "apt-key list | grep 7F0CEB10" | |
code <<-EOC | |
apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10 | |
EOC | |
end | |
script "add aptline" do | |
interpreter "bash" | |
user "root" | |
not_if "test -f /etc/apt/sources.list.d/10gen.list" | |
code <<-EOC | |
echo "deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen" | tee /etc/apt/sources.list.d/10gen.list | |
apt-get update | |
EOC | |
end | |
package "mongodb-10gen" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment