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
# Vagrantfile for node: vagrant-vm | |
Vagrant::Config.run do |config| | |
# Every Vagrant virtual environment requires a box to build off of. | |
config.vm.box = "ubuntu-11.04-server" | |
# The Opscode Platform uses HTTPS. Substitute your organization for | |
# ORGNAME in the URL and validation key. | |
# | |
config.vm.provision :chef_client do |chef| |
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
#!/bin/sh | |
# | |
# autocommit_monitor is a simple script to monitorize a directory and commit to | |
# the Git repo inside all the changes on files (files added, removed, changed, etc). | |
# It uses inotify to be aware of thos changes and you need to have installed | |
# the tool 'inotifywait'. | |
# | |
# Copyright (C) 2011-2014, Juanje Ojeda | |
# Author: Juanje Ojeda <[email protected]> | |
# |
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
class Chef | |
class Resource | |
class File | |
def include?(str) | |
return false unless ::File.exists?(@path) | |
file_content = IO.read @path | |
if file_content =~ /#{str}/ | |
Chef::Log.info("file[#{@path}] contains the string '#{str}'") | |
true |
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
# You need to install the command git-subtree from here: | |
# https://github.com/apenwarr/git-subtree | |
# Let's say you got a subdirectory 'lib-abc' under 'project' git repo that you like to | |
# split into a new repository | |
# First you need to create a bare repository, i.e. a Github project called 'lib-abc' | |
# Your new remote could be somethings like '[email protected]:yourname/lib-abc.git' | |
cd project/ |
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
diff --git a/providers/bookmarks.rb b/providers/bookmarks.rb | |
index ac470fa..f75fe11 100644 | |
--- a/providers/bookmarks.rb | |
+++ b/providers/bookmarks.rb | |
@@ -1,4 +1,8 @@ | |
-require ('sqlite3') | |
+begin | |
+ require 'sqlite3' | |
+rescue LoadError => e | |
+ Chef::Log.warn("Dependency 'gem' not loaded: #{e}") |
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", |
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
#!/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
# 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
# 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 |