This file contains 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
Vagrant::Config.run do |config| | |
# Every Vagrant virtual environment requires a box to build off of. | |
config.vm.box = "base" | |
# Assing IP to the VM | |
config.vm.network :hostonly, "10.0.33.10" | |
# Share directory between the host and the VM | |
config.vm.share_folder "git","/opt/git","/home/anarey/git/djandoapps" |
This file contains 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
load 'rake/helper.rb' | |
desc "Set up the VM" | |
task :up do | |
vm = VM.new | |
vm.cli('up') | |
end | |
desc "Shutdown the VM" | |
task :graceful_down do |
This file contains 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
# with Debian Lenny | |
knife ec2 server create -I ami-c041bda9 -x root -r "recipe[redmine]" -i IDENTITY_FILE | |
# with Ubuntu 11.10 Oneiric | |
knife ec2 server create -I ami-3962a950 -x ubuntu -r "recipe[redmine]" -i IDENTITY_FILE |
This file contains 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
#!/usr/bin/python | |
# -*- coding: utf8 -*- | |
# | |
# This software is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or | |
# (at your option) any later version. | |
# | |
# This software is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains 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
#!/usr/bin/python | |
# -*- coding: utf8 -*- | |
# | |
# Copyright (c) 2008-2012, Juanje Ojeda Croissier <[email protected]> | |
# | |
# This program is free software; you can redistribute it and/or | |
# modify it under the terms of the GNU Lesser General Public | |
# License as published by the Free Software Foundation; either | |
# version 2.1 of the License, or (at your option) any later version. | |
# |
This file contains 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
# Create the Cookbook | |
mkdir -p ~/django_guide/cookbooks/django/recipes | |
# Create the Recipe to install Django | |
cat > ~/django_guide/cookbooks/django/recipes/default.rb | |
python_pip 'django' do | |
action :install | |
end | |
^D |
This file contains 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
# Create the local directory for the Cookbooks | |
mkdir cookbooks | |
# Change into the newly created ~/django_guide/cookbooks directory | |
cd cookbooks | |
# Clone the Chef Cookbooks repositories | |
git clone git://github.com/opscode-cookbooks/apt.git | |
git clone git://github.com/opscode-cookbooks/apache2.git | |
git clone git://github.com/opscode-cookbooks/build-essential.git |
This file contains 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
#!/usr/bin/env ruby | |
require 'chef/search/query' | |
require 'chef/config' | |
require 'chef/data_bag' | |
require 'uri' | |
# get the config from the closer config file | |
repo_config_file = File.join('.', '.chef', 'knife.rb') | |
home_config_file = File.join(ENV['HOME'], '.chef', 'knife.rb') if ENV['HOME'] |
This file contains 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
#!/usr/bin/env ruby | |
require 'debsfromrepos' | |
require 'chef/config' | |
require 'chef/data_bag' | |
Chef::Config.from_file('./.chef/knife.rb') | |
data_bag = 'sources_list' |
This file contains 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
{ | |
:home_users => { | |
"pepe" => { | |
:username => "pepe", | |
:gid => 1000, | |
:uid => 1000, | |
:gecos => "Pepe,,," | |
}, | |
"damian" => { | |
:username => "damian", |