module SysChecks

Public Class Methods

get_system_arch() click to toggle source
# File lib/ec2/amitools/syschecks.rb, line 21
def self.get_system_arch()
  EC2::Platform::Current::System::BUNDLING_ARCHITECTURE
end
good_tar_version?() click to toggle source
# File lib/ec2/amitools/syschecks.rb, line 18
def self.good_tar_version?()
  EC2::Platform::Current::Tar::Version.current.usable?
end
root_user?() click to toggle source
# File lib/ec2/amitools/syschecks.rb, line 24
def self.root_user?()
  EC2::Platform::Current::System.superuser?
end
rsync_usable?() click to toggle source
# File lib/ec2/amitools/syschecks.rb, line 15
def self.rsync_usable?()
  EC2::Platform::Current::Rsync.usable?
end