Actions
Bug #6
closedForeman cant save new hosts with puppet 0.24-5
Description
seems like the following diff solved the problem, needs to ensure that it doesn't break anything else.
diff --git a/config/initializers/puppet.rb b/config/initializers/puppet.rb index c3031a8..5a8ae6c 100644 --- a/config/initializers/puppet.rb +++ b/config/initializers/puppet.rb @@ -2,3 +2,7 @@ class Resource < Puppet::Rails::Resource end class SourceFile < Puppet::Rails::SourceFile end +class ResourceTag < Puppet::Rails::ResourceTag +end
+class ParamValue < Puppet::Rails::ParamValue
+end
Updated by Ohad Levy over 15 years ago
the diff should also include:
+class ParamValue < Puppet::Rails::ParamValue +end
Updated by Ohad Levy over 15 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Applied in changeset d5f708c35743f55a1ade6023a2dff4087aa62cd9.
Actions