We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf56898 commit 28f2ca8Copy full SHA for 28f2ca8
CHANGELOG.md
@@ -3,6 +3,7 @@
3
## 0.1.24
4
5
* modified **download** resource to use **curl** instead of **wget**
6
+* fix magic hash fact
7
8
## 0.1.23
9
lib/facter/eypconf_generic_id.rb
@@ -4,7 +4,11 @@
genetic_id = Facter::Util::Resolution.exec("bash -c 'cat /opt/eypconf/id/#{i}'").to_s
if i[0]=='.' then
- fact_name=i[1..-1]
+ if i == ".magic" then
+ fact_name="magic_hash"
+ else
10
+ fact_name=i[1..-1]
11
+ end
12
else
13
fact_name=i
14
end
0 commit comments