diff options
author | James Shubin <james@shubin.ca> | 2013-12-14 13:22:39 -0500 |
---|---|---|
committer | James Shubin <james@shubin.ca> | 2013-12-14 13:22:39 -0500 |
commit | 7b96488e80a78711539ac814e09892f6fd4afb0f (patch) | |
tree | cb7881cc2643f49fb1b72c00e88268adf9755ab4 /lib/facter/gluster_uuid.rb | |
parent | 1f58e5d384c872dec417c1043292ed7243e9d854 (diff) | |
download | puppet-gluster-7b96488e80a78711539ac814e09892f6fd4afb0f.tar.gz puppet-gluster-7b96488e80a78711539ac814e09892f6fd4afb0f.tar.xz puppet-gluster-7b96488e80a78711539ac814e09892f6fd4afb0f.zip |
Fixed small typo.
Diffstat (limited to 'lib/facter/gluster_uuid.rb')
-rw-r--r-- | lib/facter/gluster_uuid.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/facter/gluster_uuid.rb b/lib/facter/gluster_uuid.rb index 7c48508..78f137d 100644 --- a/lib/facter/gluster_uuid.rb +++ b/lib/facter/gluster_uuid.rb @@ -68,7 +68,7 @@ if not(module_vardir.nil?) and File.directory?(module_vardir) # create a uuid and store it in our vardir if it doesn't already exist! if File.directory?(uuiddir) and (not File.exist?(uuidfile)) result = system("/usr/bin/uuidgen > '" + uuidfile + "'") - if not(result): + if not(result) # TODO: print warning end end |