Saltstack Official OpenSSH Formula
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

_mapdata_spec.rb 358B

12345678910111213
  1. # frozen_string_literal: true
  2. mapdata_file = "_mapdata/#{system.platform[:finger].split('.').first}.yaml"
  3. mapdata_dump = inspec.profile.file(mapdata_file)
  4. control '`map.jinja` YAML dump' do
  5. title 'should contain the lines'
  6. describe file('/tmp/salt_mapdata_dump.yaml') do
  7. it { should exist }
  8. its('content') { should eq mapdata_dump }
  9. end
  10. end