summaryrefslogtreecommitdiff
path: root/lib/dslkeywords/only_when.rb
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-02-19 01:29:01 +0200
committerPaul Buetow <paul@buetow.org>2025-02-19 01:29:01 +0200
commite37f1d7dfeb3ff40ee80c6e097cae30b9ec512c4 (patch)
tree2e9f9a63b799f1e8901fdd6d08f09b7665cd6ab5 /lib/dslkeywords/only_when.rb
parent13657c3c13dc62d6aba6e0633fc7f99e44170c06 (diff)
more on this
Diffstat (limited to 'lib/dslkeywords/only_when.rb')
-rw-r--r--lib/dslkeywords/only_when.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/dslkeywords/only_when.rb b/lib/dslkeywords/only_when.rb
deleted file mode 100644
index f23c33e..0000000
--- a/lib/dslkeywords/only_when.rb
+++ /dev/null
@@ -1,32 +0,0 @@
-require 'socket'
-
-require_relative 'keyword'
-
-module RCM
- # OnlyWhen (e.g. run on host foo)
- class OnlyWhen < Keyword
- def initialize(dsl_id)
- super(dsl_id)
- @conds = {}
- end
-
- def is(arg) = arg
- def method_missing(method_name, *args) = @conds[method_name] = args.first
- def respond_to_missing? = true
-
- def met?
- return false if @conds.key?(:hostname) && Socket.gethostname != @conds[:hostname].to_s
-
- true
- end
- end
-
- # Add 'only_when' to DSL
- class DSL
- def only_when(&block)
- conds = OnlyWhen.new(id)
- conds.instance_eval(&block)
- @conds_met = conds.met?
- end
- end
-end