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 | |
set -e | |
if [ ! -w "$1" ] ; then | |
echo "Usage: $0 [sqlite.db]" | |
exit 1 | |
fi | |
sqlite3 -echo -bail $1 << __EOF | |
BEGIN TRANSACTION; |
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 python | |
# Update some incrementing counter to give feedback about progress | |
import time | |
import sys | |
try: | |
for i in range(101): | |
print i, | |
sys.stdout.flush() | |
time.sleep(0.01) |
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 | |
# For simplicity's sake I dump this file in the project folder and execute | |
# it from the VM straight out of /vagrant -> could run as part of box/basebox buildout. | |
alias apt-get="sudo apt-get" | |
alias mount="sudo mount" | |
alias umount="sudo umount" | |
# Oh. Start by making .vbox_version contain the desired version string. | |
VBOX_VERSION=$(cat /home/vagrant/.vbox_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
From 636f9f7d31acf1ac75d7e5db4cf968c4ff376dc0 Mon Sep 17 00:00:00 2001 | |
From: Conny Brunnkvist <[email protected]> | |
Date: Mon, 20 Jun 2011 18:43:51 +0100 | |
Subject: [PATCH] Just a little wrapper script for maintenance tasks | |
--- | |
all-apps-all-envs.sh | 15 +++++++++++++++ | |
1 files changed, 15 insertions(+), 0 deletions(-) | |
create mode 100755 all-apps-all-envs.sh |
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
export rvm_path=/psg/ruby/rvm | |
export rvm_scripts_path=$rvm_path/scripts | |
[[ -s "$rvm_scripts_path/rvm" ]] && . "$rvm_scripts_path/rvm" # using rvm 1.6.4 |
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
53c53 | |
< when "start": | |
--- | |
> when "start" | |
56c56 | |
< when "stop": | |
--- | |
> when "stop" | |
59c59 | |
< when "restart": |
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 | |
set -x | |
git pull | |
git submodule update | |
pushd config/private/ | |
git stash | |
git checkout master | |
git pull | |
git stash pop | |
git add . |
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
[mysqld] | |
#Port number to use for connections. | |
port=3306 | |
#### Values to lower while debugging timeout errors #### | |
#The number of seconds the server waits for activity on a connection before closing it | |
#wait_timeout=10 | |
#The number of seconds the server waits for activity on an interactive connection before closing it. | |
#interactive_timeout=10 | |
#The number of seconds the mysqld server is waiting for a connect packet before responding with 'Bad handshake' |
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
# Rails ActiveRecord aware fork() wrapper | |
$child_pids = [] | |
def wait_for_child(pid=nil) | |
begin | |
pid, child_result = (pid.nil? ? Process.wait2 : Process.waitpid2(pid)) | |
unless child_result.exitstatus.zero? | |
$child_pids.each {|child_pid| Process.kill('TERM', child_pid) rescue true} | |
raise "Child PID:#{pid} exited with status #{child_result.exitstatus} - batch aborting" | |
end | |
rescue Errno::ECHILD |
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
From ce29c8fe3a51a4652c0942e4995bdebd0871dc06 Mon Sep 17 00:00:00 2001 | |
From: Conny Brunnkvist <[email protected]> | |
Date: Tue, 22 Jun 2010 12:02:58 +0100 | |
Subject: [PATCH] Adding Bundler-compat patches for Rails 2.3.8 | |
--- | |
config/boot.rb | 16 +++++++++++++++- | |
config/preinitializer.rb | 21 +++++++++++++++++++++ | |
2 files changed, 36 insertions(+), 1 deletions(-) | |
create mode 100644 config/preinitializer.rb |