summaryrefslogtreecommitdiff
path: root/lib/facter
diff options
context:
space:
mode:
authorAshley Penney <ashley.penney@puppetlabs.com>2014-04-22 23:14:16 +0200
committerAshley Penney <ashley.penney@puppetlabs.com>2014-04-22 23:15:16 +0200
commit68acb59bf77d8d818489b1e2a97491cb7f327a0a (patch)
tree158f31acabe32a690c7261f99b17b89a21b5257b /lib/facter
parent6a5dee25a6005280ef86a523192acf9b4d02e7ce (diff)
Adjust the regular expression for facts.
Previously this was incorrectly handling facts that were of the form foo=1+1=2 due to the ='s in the actual fact contents. Fix this and add tests to try and prevent regressions.
Diffstat (limited to 'lib/facter')
-rw-r--r--lib/facter/facter_dot_d.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/facter/facter_dot_d.rb b/lib/facter/facter_dot_d.rb
index e414b20..2c096b0 100644
--- a/lib/facter/facter_dot_d.rb
+++ b/lib/facter/facter_dot_d.rb
@@ -40,7 +40,7 @@ class Facter::Util::DotD
def txt_parser(file)
File.readlines(file).each do |line|
- if line =~ /^(.+)=(.+)$/
+ if line =~ /^([^=]+)=(.+)$/
var = $1; val = $2
Facter.add(var) do