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.

13 Zeilen
433B

  1. ## PROXIES
  2. #
  3. describe file('/etc/environment') do
  4. it('should exist')
  5. its('content') { should_not match /HTTPS_PROXY"/ }
  6. its('content') { should match /HTTP_PROXY="http:\/\/127.0.4.2:80"/ }
  7. its('content') { should match /BOB_PATH=/}
  8. its('content') { should match /LC_ALL="C"/ }
  9. its('content') { should match /ftp_proxy=.*127.0.4.3:2121/ }
  10. its('content') { should match /NO_PROXY=.*dummy.net,.local/ }
  11. end