We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 548baa7 commit 653f129Copy full SHA for 653f129
lib/facter/gluster.rb
@@ -78,7 +78,7 @@
78
volume_options.each do |vol, opts|
79
Facter.add("gluster_volume_#{vol}_options".to_sym) do
80
setcode do
81
- opts.join(',')
+ opts.join(';')
82
end
83
84
manifests/volume.pp
@@ -226,7 +226,7 @@
226
# did the options change?
227
$current_options = getvar("gluster_volume_${title}_options")
228
if $current_options {
229
- $_current = sort( split($current_options, ',') )
+ $_current = sort( split($current_options, ';') )
230
} else {
231
$_current = []
232
}
0 commit comments