Saltstack Official Linux Formula
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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