summaryrefslogtreecommitdiff
path: root/lib/tst
diff options
context:
space:
mode:
authorSaku Ytti <saku@ytti.fi>2014-02-07 10:36:50 +0200
committerSaku Ytti <saku@ytti.fi>2014-02-07 10:36:50 +0200
commit028bada99a02f2bc9b5b4409f09715ca49858675 (patch)
tree716c4f118321cfadbf3c89f375329e44a4039aa3 /lib/tst
parentf2acb9455edae1bc1c80de28af2362da9da206bf (diff)
Ignore ssh keys, change input exceptions
Now input ssh has configuration secure which is false by default, meaning we don't care about changing keys. It breaks ssh security model but rancid does it too. Also input models error handling is now mostly moved to node.rb for centralized handling + logging. With input models only defining which errors they want to receover from.
Diffstat (limited to 'lib/tst')
-rwxr-xr-xlib/tst19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/tst b/lib/tst
deleted file mode 100755
index 5e9131f..0000000
--- a/lib/tst
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env ruby20
-
-$: << '.'
-require 'pry' if ENV['DEV']
-require 'oxidized'
-
-begin
- Oxidized.new
-rescue Exception => e
- open Oxidized::Config::Crash, 'w' do |file|
- file.puts '-' * 50
- file.puts Time.now.utc
- file.puts e.message
- file.puts '-' * 50
- file.puts e.backtrace
- file.puts '-' * 50
- end
- raise
-end