Skip to content

Instantly share code, notes, and snippets.

View kimcharli's full-sized avatar

Chang Hyun (Charlie) Kim kimcharli

  • Juniper Networks
  • Westford, MA
View GitHub Profile
@kimcharli
kimcharli / ubuntu-server.preseed
Last active August 29, 2015 14:27 — forked from robertstarmer/ubuntu-server.preseed
example preseed for OpenStack deployment
d-i mirror/country string manual
d-i mirror/http/hostname string 192.168.26.170
d-i mirror/http/directory string /ubuntu
d-i partman/early_command string vgs --separator=: --noheadings | cut -f1 -d: |while read vg ; do vgchange -an $vg ; done ; pvs --separator=: --noheadings | cut -f1 -d: | while read pv ; do pvremove -ff -y $pv ; done
d-i partman-auto/disk string /dev/sda
d-i partman/alignment string cylinder
d-i partman-md/device_remove_md boolean true
d-i partman-md/confirm boolean true
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-lvm/confirm boolean true