summaryrefslogtreecommitdiff
path: root/lib/puppet/util/trocla_helper.rb
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2011-07-27 19:45:54 +0200
committermh <mh@immerda.ch>2011-07-27 19:45:54 +0200
commit8ffd1eab30b4bed765457c73ea40b994bff38b7e (patch)
treebfb6208020e5cab19b28e7b3c3914bd28ef188dd /lib/puppet/util/trocla_helper.rb
parent6457e95758e5c7aff9e995ab49fd032e3cb80b79 (diff)
bring config filename in line with what trocla uses
Diffstat (limited to 'lib/puppet/util/trocla_helper.rb')
-rw-r--r--lib/puppet/util/trocla_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/util/trocla_helper.rb b/lib/puppet/util/trocla_helper.rb
index 8187d08..ea4edee 100644
--- a/lib/puppet/util/trocla_helper.rb
+++ b/lib/puppet/util/trocla_helper.rb
@@ -17,7 +17,7 @@ module Puppet::Util::TroclaHelper
format = args[1] || 'plain'
options = args[2] || {}
- configfile = File.join(File.dirname(Puppet.settings[:config]), "trocla.yaml")
+ configfile = File.join(File.dirname(Puppet.settings[:config]), "troclarc.yaml")
raise(Puppet::ParseError, "Trocla config file #{configfile} not readable") unless File.exist?(configfile)
raise(Puppet::ParseError, "You need rubygems to use Trocla") unless Puppet.features.rubygems?
@@ -28,4 +28,4 @@ module Puppet::Util::TroclaHelper
has_options ? Trocla.new(configfile).send(trocla_func, key, format, options) : Trocla.new(configfile).send(trocla_func, key, format)
end
module_function :trocla
-end \ No newline at end of file
+end