mirror of
https://github.com/inspec/inspec
synced 2024-11-14 08:57:11 +00:00
577688a3a0
Many of the resources are named as a top-level class with a fairly generic class name, such as "OS". This causes an issue specifically with kitchen-google which depends on a gem which depends on the "os" gem which itself defines an OS class with a different superclass. This prevents users from using TK, Google Compute, and Inspec without this fix. Some mocked commands had their digest changed as well due to the new indentation, specifically in the User and RegistryKey classes. I strongly recommend viewing this diff with `git diff --ignore-space-change` to see the *real* changes. :)
59 lines
1.4 KiB
Ruby
59 lines
1.4 KiB
Ruby
# encoding: utf-8
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
|
|
require 'utils/simpleconfig'
|
|
|
|
module Inspec::Resources
|
|
class Mount < Inspec.resource(1)
|
|
name 'mount'
|
|
desc 'Use the mount InSpec audit resource to test if mount points.'
|
|
example "
|
|
describe mount('/') do
|
|
it { should be_mounted }
|
|
its(:count) { should eq 1 }
|
|
its('device') { should eq '/dev/mapper/VolGroup-lv_root' }
|
|
its('type') { should eq 'ext4' }
|
|
its('options') { should eq ['rw', 'mode=620'] }
|
|
end
|
|
"
|
|
include MountParser
|
|
|
|
attr_reader :file
|
|
|
|
def initialize(path)
|
|
@path = path
|
|
return skip_resource 'The `mount` resource is not supported on your OS yet.' if !inspec.os.linux?
|
|
@file = inspec.backend.file(@path)
|
|
end
|
|
|
|
def mounted?
|
|
file.mounted?
|
|
end
|
|
|
|
def count
|
|
mounted = file.mounted
|
|
return nil if mounted.nil? || mounted.stdout.nil?
|
|
mounted.stdout.lines.count
|
|
end
|
|
|
|
def method_missing(name)
|
|
return nil if !file.mounted?
|
|
|
|
mounted = file.mounted
|
|
return nil if mounted.nil? || mounted.stdout.nil?
|
|
|
|
line = mounted.stdout
|
|
# if we got multiple lines, only use the last entry
|
|
line = mounted.stdout.lines.to_a.last if mounted.stdout.lines.count > 1
|
|
|
|
# parse content if we are on linux
|
|
@mount_options ||= parse_mount_options(line)
|
|
@mount_options[name]
|
|
end
|
|
|
|
def to_s
|
|
"Mount #{@path}"
|
|
end
|
|
end
|
|
end
|