diff options
| author | Paul Buetow <paul@buetow.org> | 2025-02-15 10:22:50 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-02-15 10:22:50 +0200 |
| commit | 8729aafe5bca25d0f7e94bd3c7ee1e0f60f99035 (patch) | |
| tree | 2a88726109ad3482f79937d0b87f6fc05be43c6c /lib/dsl.rb | |
| parent | 6879b03b2735b082b913ab17e63857f464f53c93 (diff) | |
add depends_on syntax
Diffstat (limited to 'lib/dsl.rb')
| -rw-r--r-- | lib/dsl.rb | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,6 +4,7 @@ require_relative 'log' require_relative 'dslkeywords/file' require_relative 'dslkeywords/only_when' +require_relative 'dslkeywords/notify' # Ruby Configiration Management system module RCM @@ -24,7 +25,7 @@ module RCM def initialize(reset) DSL.reset! if reset - @id = "DSL[#{@@rcm_counter += 1}]" + @id = "dsl[#{@@rcm_counter += 1}]" @conds_met = true @scheduled = [] yield self if block_given? |
