inspec/lib/resources/yum.rb

155 lines
3.3 KiB
Ruby
Raw Normal View History

2015-09-06 15:01:28 +00:00
# encoding: utf-8
2015-10-06 16:55:44 +00:00
# author: Christoph Hartmann
# author: Dominik Richter
2015-09-06 15:01:28 +00:00
require 'resources/file'
# Usage:
# describe yum do
# its('repos') { should exist }
# end
#
# describe yum do
# its('repos') { should include 'base/7/x86_64' }
# its('epel') { should exist }
# its('epel') { should be_enabled }
# end
#
# Filter for a specific repo by name
# - use full identifier e.g. 'updates/7/x86_64'
# - use short identifier e.g. 'updates'
#
# describe yum.repo('epel') do
# it { should exist }
# it { should be_enabled }
# end
#
# deprecated:
# describe yumrepo('epel') do
# it { should exist }
# it { should be_enabled }
# end
module Vulcano::Resources
class Yum < Vulcano.resource(1)
name 'yum'
# returns all repositories
# works as following:
# search for Repo-id
# parse data in hashmap
# store data in object
# until \n
def repositories
2015-10-01 13:25:08 +00:00
return @cache if defined?(@cache)
2015-09-06 15:01:28 +00:00
# parse the repository data from yum
# we cannot use -C, because this is not reliable and may lead to errors
@command_result = vulcano.command('yum -v repolist all')
2015-09-06 15:01:28 +00:00
@content = @command_result.stdout
@cache = []
repo = {}
in_repo = false
@content.each_line do |line|
# detect repo start
in_repo = true if line.match(/^\s*Repo-id\s*:\s*(.*)\b/)
# detect repo end
if line == "\n" && in_repo
in_repo = false
@cache.push(repo)
repo = {}
end
# parse repo content
if in_repo == true
val = /^\s*([^:]*?)\s*:\s*(.*?)\s*$/.match(line)
repo[repo_key(strip(val[1]))] = strip(val[2])
end
end
@cache
end
def repos
repositories.map { |repo| repo['id'] }
end
def repo(repo)
YumRepo.new(self, repo)
end
# alias for yum.repo('reponame')
def method_missing(name)
repo(name.to_s) if !name.nil?
end
private
# Removes lefthand and righthand whitespace
def strip(value)
value.lstrip.rstrip if !value.nil?
end
# Optimize the key value
def repo_key(key)
return key if key.nil?
key.gsub('Repo-', '').downcase
end
end
end
class YumRepo
def initialize(yum, reponame)
@yum = yum
@reponame = reponame
end
# extracts the shortname from a repo id
# e.g. extras/7/x86_64 -> extras
def shortname(id)
val = %r{^\s*([^/]*?)/(.*?)\s*$}.match(id)
val.nil? ? nil : val[1]
2015-09-06 15:01:28 +00:00
end
def info
2015-10-01 13:25:08 +00:00
return @cache if defined?(@cache)
2015-09-06 15:01:28 +00:00
selection = @yum.repositories.select { |e| e['id'] == @reponame || shortname(e['id']) == @reponame }
@cache = selection[0] if !selection.nil? && selection.length == 1
@cache
end
def exist?
2015-09-06 15:01:28 +00:00
!info.nil?
end
def enabled?
repo = info
return false if repo.nil?
info['status'] == 'enabled'
end
end
# for compatability with serverspec
# this is deprecated syntax and will be removed in future versions
module Vulcano::Resources
class YumRepoLegacy < Yum
name 'yumrepo'
def initialize(name)
super()
@repository = repo(name)
end
def exists?
deprecated
@repository.exist?
2015-09-06 15:01:28 +00:00
end
def enabled?
deprecated
@repository.enabled?
end
def deprecated
warn '[DEPRECATION] `yumrepo(reponame)` is deprecated. Please use `yum.repo(reponame)` instead.'
end
end
end