-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from daks/purge-included-dir
New feature to purge included dir
- Loading branch information
Showing
18 changed files
with
36 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,47 +4,18 @@ | |
# Author: Daniel Dehennin <[email protected]> | ||
# Copyright (C) 2020 Daniel Dehennin <[email protected]> | ||
|
||
HOSTNAME_CMDS = %w[hostname hostnamectl].freeze | ||
HOSTNAME_CMDS_OPT = { | ||
'hostname' => '-s', | ||
'hostnamectl' => '--static' | ||
}.freeze | ||
|
||
class SystemResource < Inspec.resource(1) | ||
name 'system' | ||
|
||
attr_reader :platform | ||
attr_reader :hostname | ||
|
||
def initialize | ||
super | ||
@platform = build_platform | ||
@hostname = found_hostname | ||
end | ||
|
||
private | ||
|
||
def found_hostname | ||
cmd = guess_hostname_cmd | ||
|
||
unless cmd.exit_status.zero? | ||
raise Inspec::Exceptions::ResourceSkipped, | ||
"Error running '#{cmd}': #{cmd.stderr}" | ||
end | ||
|
||
cmd.stdout.chomp | ||
end | ||
|
||
def guess_hostname_cmd | ||
HOSTNAME_CMDS.each do |cmd| | ||
if inspec.command(cmd).exist? | ||
return inspec.command("#{cmd} #{HOSTNAME_CMDS_OPT[cmd]}") | ||
end | ||
end | ||
|
||
raise Inspec::Exceptions::ResourceSkipped, | ||
"Error: #{@platform[:finger]}} has none of #{HOSTNAME_CMDS.join(', ')}" | ||
end | ||
|
||
def build_platform | ||
{ | ||
family: build_platform_family, | ||
|
@@ -79,11 +50,22 @@ def build_platform_release | |
inspec.platform[:release].gsub(/2018.*/, '1') | ||
when 'arch' | ||
'base-latest' | ||
when 'gentoo' | ||
"#{inspec.platform[:release].split('.')[0]}-#{derive_gentoo_init_system}" | ||
else | ||
inspec.platform[:release] | ||
end | ||
end | ||
|
||
def derive_gentoo_init_system | ||
case inspec.command('systemctl').exist? | ||
when true | ||
'sysd' | ||
else | ||
'sysv' | ||
end | ||
end | ||
|
||
def build_platform_finger | ||
"#{build_platform_name}-#{build_finger_release}" | ||
end | ||
|