Skip to content
Snippets Groups Projects
Commit 2d09ed29 authored by Fabien Combernous's avatar Fabien Combernous
Browse files

close #29

parent 3d206aed
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file.
* #1 Fix resources attribute ensure set to latest from scratch.
* #27 Fix typo in puppet strings.
* #28 Fix WordPress core attribute ensure set to latest from scratch.
* #29 Fix external fact variable extrapolation.
* #30 Fix missing assume yes answer in `spec_helper_acceptance.rb`.
**Known Issues**
......
......@@ -31,7 +31,7 @@ for site in wproot.keys
if version =~ /^[\d\.]+$/
wordpress["#{site}"]['core']['version'] = version
else
wordpress["#{site}"]['core']['version'] = 'unexpected value #{version}'
wordpress["#{site}"]['core']['version'] = "unexpected value #{version}"
end
end
......@@ -51,7 +51,7 @@ for site in wproot.keys
if update =~ /^Success: WordPress is at the latest version/
wordpress["#{site}"]['core']['update'] = 'none'
else
wordpress["#{site}"]['core']['update'] = '#{update}'
wordpress["#{site}"]['core']['update'] = "#{update}"
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment