Skip to content
This repository was archived by the owner on Sep 27, 2021. It is now read-only.

Adds support for Ubuntu Xenial. #28

Merged
merged 2 commits into from
Jun 1, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions scripts/postinstall.sh
Original file line number Diff line number Diff line change
@@ -35,6 +35,16 @@ curl -Lo /home/vagrant/.ssh/authorized_keys \
chmod 0600 /home/vagrant/.ssh/authorized_keys
chown -R vagrant:vagrant /home/vagrant/.ssh

# under Ubuntu 16.04 (Xenial), networking gets lost on reboot
# this is because it's renamed to follow the PCI slot
case $(lsb_release -cs) in
"xenial")
sed -i "s/ens33/ens32/g" /etc/network/interfaces
;;
*)
;;
esac

# clean up any artifacts
rm -f /home/vagrant/shutdown.sh

64 changes: 64 additions & 0 deletions templates/ubuntu/xenial64.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"provisioners": [
{
"type": "shell",
"scripts": [
"scripts/postinstall.sh",
"scripts/vmtools.sh",
<%- @scripts.each do |script| -%>
"scripts/<%= script %>",
<%- end -%>
"scripts/purge.sh"
],
"execute_command": "echo 'vagrant' | {{ .Vars }} sudo -E -S bash '{{ .Path }}'"
}
],

"builders": [
{
"name": "<%= @name %>",
"type": "<%= @provider %>-iso",
<%- if @provider == "vmware" -%>
"guest_os_type": "ubuntu-64",
"tools_upload_flavor": "linux",
<%- else -%>
"guest_os_type": "Ubuntu_64",
<%- end -%>
"headless": true,

"iso_url": "http://releases.ubuntu.com/xenial/ubuntu-16.04-server-amd64.iso",
"iso_checksum": "b8b172cbdf04f5ff8adc8c2c1b4007ccf66f00fc6a324a6da6eba67de71746f6",
"iso_checksum_type": "sha256",

"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_timeout": "15m",

"http_directory": "templates/ubuntu",

"boot_command": [
"<enter><wait><f6><esc><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"/install/vmlinuz noapic ",
"preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
"debian-installer=en_US auto locale=en_US kbd-chooser/method=us ",
"hostname={{ .Name }} ",
"fb=false debconf/frontend=noninteractive ",
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ",
"keyboard-configuration/variant=USA console-setup/ask_detect=false ",
"grub-installer/bootdev=/dev/sda ",
"initrd=/install/initrd.gz -- <enter>"
],

"shutdown_command": "echo 'shutdown -P now' > shutdown.sh; echo 'vagrant'|sudo -S sh 'shutdown.sh'"
}
],

"post-processors": [
{
"type": "vagrant"
}
]
}