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 | |
for arg; do [[ $arg = /* ]] || arg=$PWD/$arg; absargs+=("$arg"); done; | |
/Applications/p4merge.app/Contents/Resources/launchp4merge "${absargs[@]}" |
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
$ sudo mdadm --grow /dev/md0 | |
mdadm: metadata format 01.01 unknown, ignored. | |
mdadm: no changes to --grow |
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
Personalities : [raid0] | |
md0 : active raid0 sdh[0] sdi[3] sdg[2] sdf[1] | |
419429376 blocks super 1.1 256k chunks | |
unused devices: <none> |
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
sudo xfs_growfs -d /dev/md0 | |
meta-data=/dev/md0 isize=256 agcount=17, agsize=6553536 blks | |
= sectsz=512 attr=0 | |
data = bsize=4096 blocks=104857344, imaxpct=25 | |
= sunit=64 swidth=256 blks | |
naming =version 2 bsize=4096 ascii-ci=0 | |
log =internal bsize=4096 blocks=32768, version=1 | |
= sectsz=512 sunit=0 blks, lazy-count=0 | |
realtime =none extsz=1048576 blocks=0, rtextents=0 | |
data size unchanged, skipping |
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 ActionController::Request | |
def reset_session | |
by = session.instance_variable_get(:@by) | |
session.destroy if session and session.respond_to?(:destroy) | |
self.session = ActionController::Session::AbstractStore::SessionHash.new(by, @env) | |
end | |
end |
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
# rabbitmq-collectd-plugin - rabbitmq_info.py | |
# | |
# Author: Daniel Maher (http://www.dark.ca/) | |
# Description: This plugin uses collectd's Python plugin to obtain Rabbitmq metrics. | |
# | |
# Loosely based on Garret Heaton's "redis-collectd-plugin" | |
# https://github.com/powdahound/redis-collectd-plugin | |
import collectd |
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
require 'puppet' | |
require 'net/http' | |
require 'net/https' | |
FOREMAN_HOST = 'your.domain.com' | |
FOREMAN_PORT = 443 | |
Puppet::Reports.register_report(:foreman) do | |
Puppet.settings.use(:reporting) | |
desc "Sends reports directly to Foreman" |
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
# Query Foreman | |
# example usage: | |
# | |
# query for hosts | |
# ~~~~~~~~~~~~~~~ | |
# $myhosts = foreman("hosts","facts.domain ~ lab") | |
# returns all hosts which have lab as part of their domain. | |
# | |
# or a more complex search term | |
# $myhosts = foreman("hosts", "hostgroup ~ web and environment = production and status.failed = 0 and facts.timezone = EST and last_report < \"1 hour ago\"" |
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
# Have the Source use the main_search database if it exists. | |
module ThinkingSphinx | |
class Source | |
def set_source_database_settings(source) | |
config = @database_configuration | |
source.sql_host = config[:main_search] || config[:host] || "localhost" | |
source.sql_user = config[:username] || config[:user] || 'root' | |
source.sql_pass = (config[:password].to_s || "").gsub('#', '\#') | |
source.sql_db = config[:database] |
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
[client] | |
loose-default-character-set = utf8 | |
[server] | |
max_allowed_packet = 128M | |
default-character-set = utf8 | |
default-collation = utf8_general_ci | |
innodb_buffer_pool_size = 256M | |
innodb_file_per_table |