Skip to content

Instantly share code, notes, and snippets.

View juanje's full-sized avatar

Juanje Ojeda juanje

View GitHub Profile
@juanje
juanje / gist:2558286
Created April 30, 2012 13:17
Simple Vagrantfile for testign Django with Chef-solo
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"
@juanje
juanje / Rakefile
Created April 12, 2012 07:46
Example of Rake tasks for dealing with Vagrant
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
@juanje
juanje / gist:2290564
Created April 3, 2012 09:03
Create Redmine box with Chef recipe in the Cloud (EC2)
# 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
@juanje
juanje / pysnipt.py
Created March 29, 2012 00:35
Simple script for getting snippets and info from Snipt.net
#!/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
@juanje
juanje / listdiff.py
Created March 29, 2012 00:12
listdiff is just a silly script which merge two list and give you the elements which are not in the first list.
#!/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.
#
@juanje
juanje / gist:2212077
Created March 27, 2012 02:54
Simple Chef recipe for installing Django
# 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
@juanje
juanje / gist:2210054
Created March 26, 2012 21:55
Get the opscode cookbooks for installing django with Chef-solo at Vagrant
# 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
@juanje
juanje / get_sources.rb
Created January 19, 2012 11:14
Get sources_list and put into a data_bag
#!/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']
@juanje
juanje / update_sources_list.rb
Created January 9, 2012 12:27
Update sources_list data_bag
#!/usr/bin/env ruby
require 'debsfromrepos'
require 'chef/config'
require 'chef/data_bag'
Chef::Config.from_file('./.chef/knife.rb')
data_bag = 'sources_list'
@juanje
juanje / home_users.json
Created December 18, 2011 23:03
Cambio de home_users a users
{
:home_users => {
"pepe" => {
:username => "pepe",
:gid => 1000,
:uid => 1000,
:gecos => "Pepe,,,"
},
"damian" => {
:username => "damian",