packer: Add digitalocean image
This commit is contained in:
parent
92ac26babe
commit
dd6cd7951a
|
@ -0,0 +1,4 @@
|
|||
output_*
|
||||
packer_cache
|
||||
crash.log
|
||||
*.box
|
|
@ -1,82 +0,0 @@
|
|||
#!/bin/sh
|
||||
# Void Linux Automatic Install Configuration
|
||||
|
||||
# ===
|
||||
# Disk Configuration
|
||||
# ===
|
||||
# disk: the disk to install to
|
||||
# default: the first disk that isn't the installer
|
||||
#disk=/dev/hda
|
||||
|
||||
# bootpartitionsize: controls how large the boot partition will be
|
||||
# default: 500M
|
||||
#bootpartitionsize=500M
|
||||
|
||||
# swapsize: how large should the swap partition be
|
||||
# default: equal to the installed physical memory
|
||||
#swapsize=
|
||||
|
||||
# ===
|
||||
# XBPS Configuration
|
||||
# ===
|
||||
# xbpsrepository: which repo should the install pull from
|
||||
# default: http://repo.voidlinux.eu/current
|
||||
|
||||
# pkgs: additional packages to install into the target
|
||||
# default: none
|
||||
#pkgs=""
|
||||
|
||||
# ===
|
||||
# Default User
|
||||
# ===
|
||||
# username: the username of the user to be created
|
||||
# default: voidlinux
|
||||
username="vagrant"
|
||||
|
||||
# password: password to set for the new user
|
||||
# default: unset (will prompt during install)
|
||||
# Warning: This does not work in musl!
|
||||
password="vagrant"
|
||||
|
||||
# ===
|
||||
# Misc. Options
|
||||
# ===
|
||||
# timezone: Timezone in TZ format
|
||||
# default: America/Chicago
|
||||
#timezone="America/Chicago"
|
||||
|
||||
# keymap: Keymap to use by default
|
||||
# default: us
|
||||
#keymap
|
||||
|
||||
# locale: initial glibc locale
|
||||
# default: en_US.UTF-8
|
||||
#libclocale=en.US.UTF-8
|
||||
|
||||
# hostname: static hostname for the system
|
||||
# default: derived from DNS
|
||||
#hostname=VoidLinux
|
||||
|
||||
# end_action: what to do at the end of the install
|
||||
# default: shutdown
|
||||
# alternate values: reboot, script
|
||||
end_action=func
|
||||
|
||||
# end_script: script to optionally run at end of install
|
||||
# the user script must reside somewhere xbps-uhelper fetch
|
||||
# can retrieve it from
|
||||
# default: not set
|
||||
|
||||
end_function() {
|
||||
printf "Linking default services"
|
||||
chroot ${target} ln -s /etc/sv/dhcpcd /etc/runit/runsvdir/default/dhcpcd
|
||||
chroot ${target} ln -s /etc/sv/sshd /etc/runit/runsvdir/default/sshd
|
||||
|
||||
xbps-install -r ${target} -Sy dbus virtualbox-ose-guest
|
||||
|
||||
chroot ${target} ln -s /etc/sv/dbus /etc/runit/runsvdir/default/dbus
|
||||
chroot ${target} ln -s /etc/sv/vboxservice /etc/runit/runsvdir/default/vboxservice
|
||||
|
||||
sync
|
||||
reboot -f
|
||||
}
|
|
@ -0,0 +1,39 @@
|
|||
#!/bin/sh
|
||||
# Void Linux Automatic Install Configuration
|
||||
|
||||
export username="void"
|
||||
export password="void"
|
||||
|
||||
export end_action=func
|
||||
end_function() {
|
||||
printf "Linking default services"
|
||||
chroot "$target" ln -s /etc/sv/dhcpcd /etc/runit/runsvdir/default/dhcpcd
|
||||
chroot "$target" ln -s /etc/sv/sshd /etc/runit/runsvdir/default/sshd
|
||||
|
||||
sync
|
||||
reboot -f
|
||||
}
|
||||
|
||||
|
||||
VAI_partition_disk() {
|
||||
# Paritition Disk
|
||||
sfdisk "${disk}" <<EOF
|
||||
;
|
||||
EOF
|
||||
}
|
||||
|
||||
VAI_format_disk() {
|
||||
# Make Filesystems
|
||||
mkfs.ext4 -F "${disk}1"
|
||||
}
|
||||
|
||||
VAI_mount_target() {
|
||||
# Mount targetfs
|
||||
mkdir -p "${target}"
|
||||
mount "${disk}1" "${target}"
|
||||
}
|
||||
|
||||
VAI_configure_fstab() {
|
||||
uuid1="$(blkid -s UUID -o value "${disk}1")"
|
||||
echo "UUID=$uuid1 / ext4 defaults,errors=remount-ro 0 1" >> "${target}/etc/fstab"
|
||||
}
|
|
@ -0,0 +1,20 @@
|
|||
#!/bin/sh
|
||||
# Void Linux Automatic Install Configuration
|
||||
|
||||
export username="vagrant"
|
||||
export password="vagrant"
|
||||
|
||||
export end_action=func
|
||||
end_function() {
|
||||
printf "Linking default services"
|
||||
chroot "$target" ln -s /etc/sv/dhcpcd /etc/runit/runsvdir/default/dhcpcd
|
||||
chroot "$target" ln -s /etc/sv/sshd /etc/runit/runsvdir/default/sshd
|
||||
|
||||
xbps-install -r "$target" -Sy dbus virtualbox-ose-guest
|
||||
|
||||
chroot "$target" ln -s /etc/sv/dbus /etc/runit/runsvdir/default/dbus
|
||||
chroot "$target" ln -s /etc/sv/vboxservice /etc/runit/runsvdir/default/vboxservice
|
||||
|
||||
sync
|
||||
reboot -f
|
||||
}
|
|
@ -0,0 +1,26 @@
|
|||
#!/bin/bash
|
||||
|
||||
echo "void ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/99-void
|
||||
echo "Defaults:void !requiretty" >> /etc/sudoers.d/99-void
|
||||
chmod 0440 /etc/sudoers.d/99-void
|
||||
mv /etc/sudoers.d/{,10-}wheel
|
||||
|
||||
xbps-fetch -o /usr/bin/growpart https://raw.githubusercontent.com/canonical/cloud-utils/ubuntu/0.31-22-g37d4e32a-0ubuntu1/bin/growpart
|
||||
chmod +x /usr/bin/growpart
|
||||
|
||||
xbps-install -y util-linux coreutils sed shinit
|
||||
ln -s /etc/sv/shinit /var/service/
|
||||
|
||||
cat <<'EOF' > /etc/runit/core-services/10-resize-root.sh
|
||||
#!/bin/sh
|
||||
rpart=$(findmnt -r -o SOURCE -v -n /)
|
||||
rnum=$(cat /sys/class/block/$(basename $rpart)/partition)
|
||||
|
||||
/usr/bin/growpart ${rpart%%$rnum} $rnum
|
||||
resize2fs $rpart
|
||||
EOF
|
||||
|
||||
passwd -dl void
|
||||
passwd -dl root
|
||||
|
||||
rm -rf /var/cache/xbps
|
|
@ -0,0 +1,53 @@
|
|||
{
|
||||
"builders": [
|
||||
{
|
||||
"accelerator": "kvm",
|
||||
"boot_command": [
|
||||
"<tab><wait>",
|
||||
"auto autourl=http://{{ .HTTPIP }}:{{ .HTTPPort }}/cloud.cfg",
|
||||
"<enter>"
|
||||
],
|
||||
"boot_wait": "5s",
|
||||
"disk_interface": "virtio",
|
||||
"disk_size": "1000M",
|
||||
"format": "qcow2",
|
||||
"http_directory": "http",
|
||||
"iso_checksum": "sha256:d95d40e1eb13a7776b5319a05660792fddd762662eaecee5df6b8feb3aa9b391",
|
||||
"iso_url": "https://alpha.de.repo.voidlinux.org/live/20200722/void-live-x86_64-5.7.10_1-20200722.iso",
|
||||
"output_directory": "output_void_qcow2",
|
||||
"shutdown_command": "echo 'void' | sudo -S shutdown -P now",
|
||||
"ssh_password": "void",
|
||||
"ssh_timeout": "20m",
|
||||
"ssh_username": "void",
|
||||
"type": "qemu",
|
||||
"vm_name": "DO-glibc64"
|
||||
}
|
||||
],
|
||||
"post-processors": [
|
||||
{
|
||||
"image_description": "Packer import {{timestamp}}",
|
||||
"image_name": "void-linux-{{user `release`}}",
|
||||
"image_regions": "{{user `image_regions`}}",
|
||||
"image_tags": [
|
||||
"custom",
|
||||
"packer"
|
||||
],
|
||||
"space_name": "{{user `spaces_bucket`}}",
|
||||
"spaces_region": "{{user `spaces_region`}}",
|
||||
"type": "digitalocean-import"
|
||||
}
|
||||
],
|
||||
"provisioners": [
|
||||
{
|
||||
"execute_command": "echo 'void' | {{.Vars}} sudo -E -S bash '{{.Path}}'",
|
||||
"script": "scripts/cloud.sh",
|
||||
"type": "shell"
|
||||
}
|
||||
],
|
||||
"variables": {
|
||||
"image_regions": "{{env `IMAGE_REGIONS`}}",
|
||||
"spaces_bucket": "{{env `SPACES_BUCKET`}}",
|
||||
"spaces_region": "{{env `SPACES_REGION`}}",
|
||||
"release": "{{env `RELEASE`}}"
|
||||
}
|
||||
}
|
|
@ -1,51 +1,53 @@
|
|||
{
|
||||
"variables": {
|
||||
"version": "{{env `RELEASE`}}"
|
||||
},
|
||||
"builders": [
|
||||
{
|
||||
"type": "virtualbox-iso",
|
||||
"vboxmanage": [
|
||||
["modifyvm", "{{.Name}}", "--nictype1", "virtio"]
|
||||
],
|
||||
"iso_url": "https://alpha.de.repo.voidlinux.org/live/20190217/void-live-x86_64-20190217.iso",
|
||||
"iso_checksum": "b6884f6ea435e242c29a5778ced7a1ce187cef2f07eb9543765064a1256030e9",
|
||||
"iso_checksum_type": "sha256",
|
||||
"boot_wait": "5s",
|
||||
"boot_command": [
|
||||
"<tab><wait>",
|
||||
"auto autourl=http://{{ .HTTPIP }}:{{ .HTTPPort }}/autoinstall.cfg",
|
||||
"<enter>"
|
||||
],
|
||||
"guest_os_type": "Linux_64",
|
||||
"http_directory": "http",
|
||||
"shutdown_command": "echo 'vagrant' | sudo -S shutdown -P now",
|
||||
"ssh_wait_timeout": "20m",
|
||||
"virtualbox_version_file": ".vbox_version",
|
||||
"guest_additions_mode": "disable",
|
||||
"ssh_username": "vagrant",
|
||||
"ssh_password": "vagrant"
|
||||
}
|
||||
],
|
||||
|
||||
"provisioners": [
|
||||
{
|
||||
"type": "shell",
|
||||
"script": "scripts/vagrant.sh",
|
||||
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -E -S bash '{{.Path}}'"
|
||||
}
|
||||
],
|
||||
|
||||
"post-processors": [
|
||||
"builders": [
|
||||
{
|
||||
"boot_command": [
|
||||
"<tab><wait>",
|
||||
"auto autourl=http://{{ .HTTPIP }}:{{ .HTTPPort }}/vagrant.cfg",
|
||||
"<enter>"
|
||||
],
|
||||
"boot_wait": "5s",
|
||||
"guest_additions_mode": "disable",
|
||||
"guest_os_type": "Linux_64",
|
||||
"http_directory": "http",
|
||||
"iso_checksum": "sha256:d95d40e1eb13a7776b5319a05660792fddd762662eaecee5df6b8feb3aa9b391",
|
||||
"iso_url": "https://alpha.de.repo.voidlinux.org/live/20200722/void-live-x86_64-5.7.10_1-20200722.iso",
|
||||
"shutdown_command": "echo 'vagrant' | sudo -S shutdown -P now",
|
||||
"ssh_password": "vagrant",
|
||||
"ssh_timeout": "20m",
|
||||
"ssh_username": "vagrant",
|
||||
"type": "virtualbox-iso",
|
||||
"vboxmanage": [
|
||||
[
|
||||
{
|
||||
"type": "vagrant"
|
||||
},
|
||||
{
|
||||
"type": "vagrant-cloud",
|
||||
"box_tag": "voidlinux/glibc64",
|
||||
"version": "{{user `version`}}"
|
||||
}
|
||||
"modifyvm",
|
||||
"{{.Name}}",
|
||||
"--nictype1",
|
||||
"virtio"
|
||||
]
|
||||
],
|
||||
"virtualbox_version_file": ".vbox_version"
|
||||
}
|
||||
],
|
||||
"post-processors": [
|
||||
[
|
||||
{
|
||||
"type": "vagrant"
|
||||
},
|
||||
{
|
||||
"box_tag": "voidlinux/glibc64",
|
||||
"type": "vagrant-cloud",
|
||||
"version": "{{user `version`}}"
|
||||
}
|
||||
]
|
||||
],
|
||||
"provisioners": [
|
||||
{
|
||||
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -E -S bash '{{.Path}}'",
|
||||
"script": "scripts/vagrant.sh",
|
||||
"type": "shell"
|
||||
}
|
||||
],
|
||||
"variables": {
|
||||
"version": "{{env `RELEASE`}}"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue