Module: Mixins
- Defined in:
- lib/puppet/type/wait_for.rb
Overview
All of this code is based on the Exec builtin type.
The code complexity in both Exec and in this derived Wait_for type comes from supporting the refreshonly concept, which does not fit Puppet’s type/provider model. The hack in Exec and here is to not use the provider at all, and have the types themselves do most of the work.
The Mixins module is used in the Wait_for type only to reuse the retrieve and sync methods. This is one point of departure from Exec. In Exec, retrieve and sync are defined only once on the :returns property. Here, they need to be defined on :exit_code, :query and :seconds.
Defined Under Namespace
Modules: InstanceMethods
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
16 17 18 |
# File 'lib/puppet/type/wait_for.rb', line 16 def self.included base base.send(:include, InstanceMethods) end |