_dokken.rb 306 B

1234567891011121314151617181920
  1. #
  2. # Cookbook:: revolv_config
  3. # Recipe:: _dokken
  4. #
  5. # Copyright:: 2022, The Authors, All Rights Reserved.
  6. resolver_config '/etc/resolv.conf' do
  7. nameservers [
  8. '192.168.1.39',
  9. '8.8.8.8',
  10. ]
  11. search [
  12. 'xcom.lan',
  13. 'test.lan',
  14. ]
  15. options(
  16. 'timeout' => 2,
  17. )
  18. atomic_update false
  19. end