Sha256: eeb961917546d98db1c012900f97016cb62672dde8dfe90f899cb8a1a1a1ddda

Contents?: true

Size: 1.42 KB

Versions: 12

Compression:

Stored size: 1.42 KB

Contents

# encoding: utf-8

module Inspec::Resources
  class ZfsDataset < Inspec.resource(1)
    name 'zfs_dataset'
    supports platform: 'unix'
    desc "
      Use the zfs_dataset InSpec audit resource to test if the named
      ZFS Dataset is present and/or has certain properties.
    "
    example <<~EXAMPLE
      describe zfs_dataset('tank/tmp') do
        its('exec') { should eq('off') }
        its('setuid') { should eq('off') }
      end
    EXAMPLE

    def initialize(zfs_dataset)
      return skip_resource 'The `zfs_dataset` resource is not supported on your OS yet.' if !inspec.os.bsd?
      @zfs_dataset = zfs_dataset

      @params = gather
    end

    # method called by 'it { should exist }'
    def exists?
      inspec.command("/sbin/zfs get -Hp all #{@zfs_dataset}").exit_status == 0
    end

    def mounted?
      return false if !exists?
      inspec.mount(@params['mountpoint']).mounted?
    end

    def to_s
      "ZFS Dataset #{@zfs_dataset}"
    end

    def gather
      cmd = inspec.command("/sbin/zfs get -Hp all #{@zfs_dataset}")
      return nil if cmd.exit_status.to_i != 0

      # parse data
      cmd.stdout.chomp.split("\n").each_with_object(Hash.new(0)) do |line, h|
        t = line.split("\t")
        h[t[1].to_s] = t[2].to_s
      end
    end

    # override method
    def exec
      @params['exec']
    end

    # expose all parameters
    def method_missing(name)
      @params[name.to_s]
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
inspec-core-4.3.2 lib/resources/zfs_dataset.rb
inspec-4.3.2 lib/resources/zfs_dataset.rb
inspec-core-4.2.0.preview lib/resources/zfs_dataset.rb
inspec-4.2.0.preview lib/resources/zfs_dataset.rb
inspec-core-4.1.4.preview lib/resources/zfs_dataset.rb
inspec-4.1.4.preview lib/resources/zfs_dataset.rb
inspec-core-3.9.3 lib/resources/zfs_dataset.rb
inspec-3.9.3 lib/resources/zfs_dataset.rb
inspec-core-3.9.0 lib/resources/zfs_dataset.rb
inspec-3.9.0 lib/resources/zfs_dataset.rb
inspec-core-3.7.11 lib/resources/zfs_dataset.rb
inspec-3.7.11 lib/resources/zfs_dataset.rb