Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
c97a67c04f |
@ -10,3 +10,6 @@ templates/digitalocean-glibc64.json: templates fragments/base-qemu-glibc64.json
|
|||||||
|
|
||||||
templates/vagrant-glibc64.json: templates fragments/base-vbox-glibc64.json fragments/platform-vagrant.json
|
templates/vagrant-glibc64.json: templates fragments/base-vbox-glibc64.json fragments/platform-vagrant.json
|
||||||
jq -s 'add' fragments/base-vbox-glibc64.json fragments/platform-vagrant.json > templates/vagrant-glibc64.json
|
jq -s 'add' fragments/base-vbox-glibc64.json fragments/platform-vagrant.json > templates/vagrant-glibc64.json
|
||||||
|
|
||||||
|
templates/aws-glibc64.json: templates fragments/base-qemu-glibc64.json fragments/provisioner-cloud.json fragments/platform-digitalocean.json
|
||||||
|
jq -s 'add' fragments/base-qemu-glibc64.json fragments/provisioner-cloud.json fragments/platform-aws.json > templates/aws-glibc64.json
|
||||||
|
@ -10,17 +10,16 @@
|
|||||||
"boot_wait": "5s",
|
"boot_wait": "5s",
|
||||||
"disk_interface": "virtio",
|
"disk_interface": "virtio",
|
||||||
"disk_size": "1000M",
|
"disk_size": "1000M",
|
||||||
"format": "qcow2",
|
"format": "raw",
|
||||||
|
"vm_name": "void.raw",
|
||||||
"http_directory": "http",
|
"http_directory": "http",
|
||||||
"iso_checksum": "sha256:d95d40e1eb13a7776b5319a05660792fddd762662eaecee5df6b8feb3aa9b391",
|
"iso_checksum": "sha256:d95d40e1eb13a7776b5319a05660792fddd762662eaecee5df6b8feb3aa9b391",
|
||||||
"iso_url": "https://alpha.de.repo.voidlinux.org/live/20200722/void-live-x86_64-5.7.10_1-20200722.iso",
|
"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",
|
"shutdown_command": "echo 'void' | sudo -S shutdown -P now",
|
||||||
"ssh_password": "void",
|
"ssh_password": "void",
|
||||||
"ssh_timeout": "20m",
|
"ssh_timeout": "20m",
|
||||||
"ssh_username": "void",
|
"ssh_username": "void",
|
||||||
"type": "qemu",
|
"type": "qemu"
|
||||||
"vm_name": "DO-glibc64"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
12
packer/fragments/platform-aws.json
Normal file
12
packer/fragments/platform-aws.json
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"post-processors": [
|
||||||
|
{
|
||||||
|
"type": "amazon-import",
|
||||||
|
"s3_bucket_name": "{{user `s3_bucket_name`}}",
|
||||||
|
"format": "raw"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"variables": {
|
||||||
|
"s3_bucket_name": "{{env `S3_BUCKET_NAME`}}"
|
||||||
|
}
|
||||||
|
}
|
19
packer/packer-manifest.json
Normal file
19
packer/packer-manifest.json
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"builds": [
|
||||||
|
{
|
||||||
|
"name": "qemu",
|
||||||
|
"builder_type": "qemu",
|
||||||
|
"build_time": 1598776155,
|
||||||
|
"files": [
|
||||||
|
{
|
||||||
|
"name": "output-qemu/packer-qemu",
|
||||||
|
"size": 1048576000
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"artifact_id": "VM",
|
||||||
|
"packer_run_uuid": "bef5beb0-c26f-2680-495d-6a04ca26e636",
|
||||||
|
"custom_data": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"last_run_uuid": "bef5beb0-c26f-2680-495d-6a04ca26e636"
|
||||||
|
}
|
10
packer/scripts/linux-lts.sh
Normal file
10
packer/scripts/linux-lts.sh
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
df -h
|
||||||
|
rm -rf /var/cache/xbps/
|
||||||
|
df -h
|
||||||
|
|
||||||
|
echo 'ignorepkg=linux' > /etc/xbps.d/90-ignore-linux.conf
|
||||||
|
xbps-remove -Ry linux
|
||||||
|
rm -fv /boot/"*$(uname -r)*"
|
||||||
|
xbps-install -y linux-lts
|
Loading…
Reference in New Issue
Block a user