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
irb(main):001:0> File.stat("/dev/mapper/exportvg-testlv") | |
=> #<File::Stat dev=0xe, ino=2210485, mode=060660, nlink=1, uid=0, gid=6, rdev=0xfe03, size=0, blksize=4096, blocks=0, atime=Mon Feb 23 13:35:48 -0700 2009, mtime=Mon Feb 23 12:04:22 -0700 2009, ctime=Mon Feb 23 12:04:22 -0700 2009> | |
irb(main):002:0> File.stat("/dev/exportvg/testlv") | |
Errno::EACCES: Permission denied - /dev/exportvg/testlv | |
from (irb):2:in `stat' | |
from (irb):2 | |
from :0 |
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 | |
# | |
# EC2 bootstrap | |
# | |
mkdir /etc/chef | |
mkdir /var/chef | |
cat > /etc/chef/solo.rb <<SOLO | |
cookbook_path "/var/chef/cookbooks" |
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
[Fri, 06 Mar 2009 17:21:47 -0700] DEBUG: Processing remote_file[/usr/sbin/rebuild-iptables] | |
[Fri, 06 Mar 2009 17:21:47 -0700] DEBUG: remote_file[/usr/sbin/rebuild-iptables] using Chef::Provider::RemoteFile | |
[Fri, 06 Mar 2009 17:21:47 -0700] DEBUG: Checking remote_file[/usr/sbin/rebuild-iptables] for changes | |
[Fri, 06 Mar 2009 17:21:47 -0700] DEBUG: Downloading from server: cookbooks/iptables/files?id=rebuild-iptables&platform=ubuntu&version=8.10&fqdn=barkeep.int.housepub.org&checksum=eb1738315a85bb6b72c1c365f7e6e2a84f1a1a0a8d904bc8c199c828b7e0e97b | |
[Fri, 06 Mar 2009 17:21:47 -0700] DEBUG: Sending HTTP Request via GET to /cookbooks/iptables/files?id=rebuild-iptables&platform=ubuntu&version=8.10&fqdn=barkeep.int.housepub.org&checksum=eb1738315a85bb6b72c1c365f7e6e2a84f1a1a0a8d904bc8c199c828b7e0e97b | |
[Fri, 06 Mar 2009 17:21:47 -0700] DEBUG: /cookbooks/iptables/files?id=rebuild-iptables&platform=ubuntu&version=8.10&fqdn=barkeep.int.housepub.org&checksum=eb1738315a85bb6b72c1c365f7e6e2a84f1a1a0a8d904bc8c199c828b7e0 |
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
define :mysql_database, :action => 'create' do | |
def mysql(command, config=nil, ) | |
"mysql --defaults-file=#{config} --execute=#{command.inspect}" | |
end | |
include_recipe "mysql::client" | |
# For now, use the super-user conf | |
case @node[:platform] | |
when "debian", "ubuntu" |
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
$ spec -cf specdoc perl_spec.rb | |
Ohai::System plugin perl | |
- should run perl -V:version -V:archname | |
- should close perl command's stdin | |
- should iterate over each line of perl command's stdout | |
- should set languages[:perl][:version] (ERROR - 1) | |
- should set languages[:perl][:archname] (ERROR - 2) | |
- should set languages[:perl] if perl command succeeds (FAILED - 3) | |
- should not set languages[:perl] if perl command fails |
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/bash | |
# 1st install Apple's XCode (dev tools, gcc, etc) | |
# Then... Setup | |
cat >$HOME/.bash_profile <<\THEEND | |
export PATH=$HOME/bin:/opt/local/bin:$PATH | |
export MANPATH=$HOME/man:/opt/local/man:$MANPATH | |
if [ -f /opt/local/etc/bash_completion ]; then | |
. /opt/local/etc/bash_completion |
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 TestCLI | |
include Mixlib::CLI | |
option :config_file, | |
:short => "-c CONFIG", | |
:long => "--config CONFIG", | |
:default => 'config.rb', | |
:description => "The configuration file to use" | |
option :log_level, |
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
r = service "apache" { action :nothing } | |
r.updated = true | |
r.notifies(:start, r, :delayed) |
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
# | |
# Cookbook Name:: apt | |
# Recipe:: default | |
# | |
# Copyright 2008, OpsCode, Inc. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# |
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 | |
# -*- ruby -*- | |
`git checkout opscode/master` | |
Dir.glob("*").select {|x| FileTest.directory?(x) }.each do |path| | |
`git br -D #{path}` | |
`git checkout -b #{path} opscode/master` | |
`git filter-branch --tree-filter \ | |
'rm -rf #{Dir.glob("*").reject {|x| x == path }.join(" ")}' --prune-empty HEAD` | |
`rm -rf .git/refs/original` |