Saltstack Official Linux Formula
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

18 Zeilen
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