defaults write com.google.Keystone.Agent checkInterval 0
This file contains hidden or 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
chmod go-w ~ && chmod 700 ~/.ssh && chmod 600 ~/.ssh/authorized_keys |
This file contains hidden or 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 init-checkconf /etc/init/znc.conf | |
ERROR: cannot run as root | |
$ init-checkconf /etc/init/znc.conf | |
ERROR: failed to ask Upstart to check conf file |
This file contains hidden or 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
2013-10-18 14:31:46 mdehaan_afk gkarekinian: comments on twitter not appreciated | |
2013-10-18 14:31:59 -- Mode #ansible [+o mdehaan_afk] by ChanServ | |
2013-10-18 14:32:11 gkarekinian My opinions are mine | |
2013-10-18 14:32:13 @mdehaan_afk if you have a specific problem in that code we'd be glad to help | |
2013-10-18 14:32:19 drybjed mdehaan_afk: link? | |
2013-10-18 14:32:29 @mdehaan_afk "I'm too old for this shit: http://ift.tt/17QmBzt " | |
2013-10-18 14:32:32 gkarekinian The problem? A 250 lines function | |
2013-10-18 14:32:49 gkarekinian If you don't see the problem I can't do anything | |
2013-10-18 14:32:55 @mdehaan_afk =The idea that we have to refactor things from time to time is known. Runner handles a lot of complexity. | |
2013-10-18 14:33:13 @mdehaan_afk seeing it's open source I don't take to kindly to people here that ask for a lot of help from us and then rant about it behind our back. |
This file contains hidden or 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
I, [2014-09-24T11:07:17.623792 #14749] INFO -- : Refreshing Gem list | |
/var/www/liquor-cabinet/releases/7cbef2dee01eade8bfb1cc83defd9abbb42968e1/vendor/bundle/ruby/2.1.0/gems/backports-3.3.0/lib/backports/1.9.1/io/open.rb:2:in `close': Bad file descriptor @ fptr_finalize - /var/www/ | |
liquor-cabinet/releases/7cbef2dee01eade8bfb1cc83defd9abbb42968e1/vendor/bundle/ruby/2.1.0/gems/backports-3.3.0/lib/backports/1.9.1/io/open.rb (Errno::EBADF) | |
from /var/www/liquor-cabinet/releases/7cbef2dee01eade8bfb1cc83defd9abbb42968e1/vendor/bundle/ruby/2.1.0/gems/backports-3.3.0/lib/backports/1.9.1/io/open.rb:2:in `open' | |
from /var/www/liquor-cabinet/releases/7cbef2dee01eade8bfb1cc83defd9abbb42968e1/vendor/bundle/ruby/2.1.0/gems/backports-3.3.0/lib/backports/1.9.1/io/open.rb:2:in `<top (required)>' | |
from /var/www/liquor-cabinet/releases/7cbef2dee01eade8bfb1cc83defd9abbb42968e1/vendor/bundle/ruby/2.1.0/gems/backports-3.3.0/lib/backports/tools.rb:328:in `require' | |
from /var/www/liquor-cabinet/releases/7 |
This file contains hidden or 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 sh | |
if ! which boot2docker; then | |
brew install boot2docker | |
mkdir $HOME/.boot2docker | |
echo DOCKER_PORT=32000 > $HOME/.boot2docker/profile | |
fi | |
if [[ -z $DOCKER_HOST ]]; then | |
export DOCKER_HOST="tcp://127.0.0.1:32000" | |
add_to_shell=1 |
This file contains hidden or 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
$ file crul | |
crul: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=0xa4e9e283be451c3511b96c2636a263ae4b1b6792, not stripped | |
$ ./crul | |
./crul: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by ./crul) |
This file contains hidden or 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 'minitest/autorun' | |
describe 2 do | |
i_suck_and_my_tests_are_order_dependent! | |
describe '1' do | |
it 'runs the spec in the same order' do | |
puts '1' | |
end |
This file contains hidden or 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
chef > node['graylog2']['elasticsearch']['max_size_per_index'] | |
=> 1073741824 | |
chef > node.override['graylog2']['elasticsearch']['max_size_per_index'] = nil | |
=> nil | |
chef > node['graylog2']['elasticsearch']['max_size_per_index'] | |
=> 1073741824 |
OlderNewer