Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. -append "preseed/url={{ item.value.preseed | default(deployments[item.value.type].preseed) }}
  2. debian-installer/allow_unauthenticated_ssl=true
  3. debian-installer/locale=en_US.UTF-8
  4. keyboard-configuration/layoutcode=us
  5. console-setup/ask_detect=false
  6.  
  7. debian/priority=critical
  8. vga=normal
  9. netcfg/choose_interface=auto
  10. localechooser/translation/warn-light=true
  11. localechooser/translation/warn-severe=true
  12. console-setup/ask_detect=false
  13. netcfg/get_hostname={{ item.key }}
  14. {% if item.value.network is defined %}
  15. {% if item.value.network.domainname is defined %}
  16. netcfg/get_domain={{ item.value.network.domainname }}
  17. {% endif %}
  18. {% if ( item.value.network.ip is defined and item.value.network.netmask is defined ) %}
  19. netcfg/confirm_static=true
  20. netcfg/disable_dhcp=true
  21. netcfg/get_ipaddress={{ item.value.network.ip }}
  22. netcfg/get_netmask={{ item.value.network.netmask }}
  23. {% if item.value.network.gateway is defined %}
  24. netcfg/get_gateway={{ item.value.network.gateway }}
  25. {% endif %}
  26. {% if item.value.network.nameserver is defined %}
  27. netcfg/get_nameservers={{ item.value.network.nameserver }}
  28. {% endif %}
  29. {% endif %}
  30. {% else %}
  31. netcfg/get_domain=string unassigned-domain
  32. {% endif %}
  33. FRONTEND_BACKGROUND=original"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement