Class: Specinfra::Command::Redhat::Base::Package

Inherits:
Linux::Base::Package show all
Defined in:
lib/specinfra/command/redhat/base/package.rb

Class Method Summary collapse

Methods inherited from Base::Package

check_is_installed_by_cpan, check_is_installed_by_gem, check_is_installed_by_npm, check_is_installed_by_pear, check_is_installed_by_pecl, check_is_installed_by_pip, check_is_installed_by_pip2, check_is_installed_by_pip3, check_is_installed_by_rvm, check_is_installed_by_td_agent_gem

Methods inherited from Base

create, escape

Class Method Details

.check_is_installed(package, version = nil) ⇒ Object Also known as: check_is_installed_by_rpm



3
4
5
6
7
8
9
10
# File 'lib/specinfra/command/redhat/base/package.rb', line 3

def check_is_installed(package, version=nil)
  cmd = "rpm -q #{escape(package)}"
  if version
    full_package = "#{package}-#{version}"
    cmd = "#{cmd} | grep -w -- #{Regexp.escape(full_package)}"
  end
  cmd
end

.get_version(package, opts = nil) ⇒ Object



14
15
16
# File 'lib/specinfra/command/redhat/base/package.rb', line 14

def get_version(package, opts=nil)
  "rpm -q --qf '%{VERSION}-%{RELEASE}' #{package}"
end

.install(package, version = nil, option = '') ⇒ Object



18
19
20
21
22
23
24
25
# File 'lib/specinfra/command/redhat/base/package.rb', line 18

def install(package, version=nil, option='')
  if version
    full_package = "#{package}-#{version}"
  else
    full_package = package
  end
  cmd = "yum -y #{option} install #{escape(full_package)}"
end

.remove(package, option = '') ⇒ Object



27
28
29
# File 'lib/specinfra/command/redhat/base/package.rb', line 27

def remove(package, option='')
  "yum -y #{option} remove #{package}"
end