Add check if Gem is defined
On e.g. Ubuntu 12.04 LTS Gem is not there by default so i added a check to not fail in that fact if this is the case.
This commit is contained in:
parent
52f6af3acc
commit
be6d4d2ffb
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ require 'puppet/type/package'
|
|||
|
||||
Facter.add(:package_provider) do
|
||||
setcode do
|
||||
if Gem::Version.new(Facter.value(:puppetversion).split(' ')[0]) >= Gem::Version.new('3.6')
|
||||
if defined? Gem and Gem::Version.new(Facter.value(:puppetversion).split(' ')[0]) >= Gem::Version.new('3.6')
|
||||
Puppet::Type.type(:package).newpackage(:name => 'dummy', :allow_virtual => 'true')[:provider].to_s
|
||||
else
|
||||
Puppet::Type.type(:package).newpackage(:name => 'dummy')[:provider].to_s
|
||||
|
|
Loading…
Reference in a new issue