Skip to content

Instantly share code, notes, and snippets.

View juanje's full-sized avatar

Juanje Ojeda juanje

View GitHub Profile
@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 / 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 / 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 / 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: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 / gist:3081998
Created July 10, 2012 08:21
A simple Logstash conffile with a custom grok filter
input {
tcp {
type => "linux-syslog"
port => 3333
}
file {
type => "linux-syslog"
path => [ "/var/log/auth.log" ]
}
@juanje
juanje / gist:3797207
Created September 28, 2012 00:08
Some useful lines for my Vagrantfiles
# To have the last stable version of Chef (10.14.4)
# with the official Vagrant boxes
config.vm.provision :shell,
:inline => "gem search -i chef -v 10.14.4 || gem install chef -v 10.14.4 --no-rdoc --no-ri"
# with the official Opscode boxes
config.vm.provision :shell,
:inline => "/opt/chef/embedded/bin/gem search -i chef -v 10.14.4 || /opt/chef/embedded/bin/gem install chef -v 10.14.4 --no-rdoc --no-ri"
@juanje
juanje / gist:3797297
Created September 28, 2012 00:38
Mount apt cache of a Vagrant box in the host to spin up the packages installation

This is a little trick I use to spin up the packages instalation on Debian/Ubuntu boxes in Vagrant.

I add a simple function that checks if a directory named something similar to ~/.vagrant.d/cache/apt/opscode-ubuntu-12.04/partial (it may have another path in Windows or MacOS) and create the directory if it doesn't already exist.

def local_cache(basebox_name)
  cache_dir = Vagrant::Environment.new.home_path.join('cache', 'apt', basebox_name)
  partial_dir = cache_dir.join('partial')
  partial_dir.mkdir unless partial_dir.exist?
 cache_dir
@juanje
juanje / Berksfile
Created December 10, 2012 03:41
Example of config for bootstraping an Aentos project
site :opscode
cookbook 'mongodb'
cookbook 'postgresql', '= 2.0.0'
cookbook 'apt'
cookbook 'sudo'
cookbook 'conf'
cookbook 'rvm', git: 'git://github.com/fnichol/chef-rvm.git', branch: "v0.9.0"
cookbook 'aentos-bootstrap', git: 'git://github.com/aentos/cookbook-aentos-bootstrap.git'
@juanje
juanje / web_assertions.rb
Last active December 10, 2015 02:28
Examples of custom assertions for remote conections with MiniTest

This is a short and simple example of custom assertions for Minitest.

They are very basic, but they help me to learn it. And I can use the to test some very simple use case of remote conection without install a bunch of gems.

I learn what I needed for this from this article and the minitest-chef-handler's code.

It can be improved a lot using Nokogiri and other Ruby libraries.