Saltstack Official Linux 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ů.

18 lines
449B

  1. describe file('/etc/profile.d/salt_profile_vi_flavors.sh') do
  2. it('should exist')
  3. its('content') { should match /EDITOR=vim/ }
  4. its('content') { should match /PAGER=view/ }
  5. its('content') { should match /alias vi=vim/ }
  6. end
  7. describe file('/etc/profile.d/salt_profile_locales.sh') do
  8. it('should exist')
  9. its('content') { should match /LANG=en_US/ }
  10. end
  11. describe file('/etc/profile.d/prompt.sh') do
  12. it('should exist')
  13. end