1
0
Fork 0

test(system.rb): add support for `mac_os_x` [skip ci]

* Automated using https://github.com/myii/ssf-formula/pull/442
This commit is contained in:
Imran Iqbal 2022-05-17 08:52:09 +01:00
parent e21b8ff6f1
commit 5263127a6d
No known key found for this signature in database
GPG Key ID: 6D8629439D2B7819
2 changed files with 3 additions and 0 deletions

View File

@ -21,4 +21,5 @@ supports:
- platform-name: gentoo
- platform-name: almalinux
- platform-name: rocky
- platform-name: mac_os_x
- platform: windows

View File

@ -57,6 +57,8 @@ class SystemResource < Inspec.resource(1)
'base-latest'
when 'gentoo'
"#{inspec.platform[:release].split('.')[0]}-#{derive_gentoo_init_system}"
when 'mac_os_x'
inspec.command('sw_vers -productVersion').stdout.to_s
when 'opensuse'
# rubocop:disable Style/NumericLiterals,Layout/LineLength
inspec.platform[:release].to_i > 20210101 ? 'tumbleweed' : inspec.platform[:release]