summaryrefslogtreecommitdiff
path: root/lib/oxidized/job.rb
diff options
context:
space:
mode:
authorSaku Ytti <saku@ytti.fi>2013-04-17 17:48:50 +0300
committerSaku Ytti <saku@ytti.fi>2013-04-17 17:48:50 +0300
commit9d217025fac3e335c308f02e7377e14ccfdc0e66 (patch)
treeb90d4d04947fe26a9e592e12d8c4352142380c03 /lib/oxidized/job.rb
Initial commit
Silly for shit-and-giggles attempt at rancid
Diffstat (limited to 'lib/oxidized/job.rb')
-rw-r--r--lib/oxidized/job.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/oxidized/job.rb b/lib/oxidized/job.rb
new file mode 100644
index 0000000..6921c2b
--- /dev/null
+++ b/lib/oxidized/job.rb
@@ -0,0 +1,14 @@
+module Oxidized
+ class Job < Thread
+ attr_reader :start, :end, :status, :time, :node, :config
+ def initialize node
+ @node = node
+ @start = Time.now.utc
+ super do |node|
+ @status, @config = node.run
+ @end = Time.now.utc
+ @time = @end - @start
+ end
+ end
+ end
+end