summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2019-10-25 14:22:26 +0200
committerJonathan Bauer2019-10-25 14:22:26 +0200
commita59cb8884b67e54731727e27b72985e84ee42b8f (patch)
treef431899ec05c1a64780d2fefb75fef19786bf123
parentcentos-7-x86_64.json: remove virtualbox/vmware (diff)
downloadpacker-templates-a59cb8884b67e54731727e27b72985e84ee42b8f.tar.gz
packer-templates-a59cb8884b67e54731727e27b72985e84ee42b8f.tar.xz
packer-templates-a59cb8884b67e54731727e27b72985e84ee42b8f.zip
centos-8-x86_64.json: formatting
-rw-r--r--centos-8-x86_64.json49
1 files changed, 25 insertions, 24 deletions
diff --git a/centos-8-x86_64.json b/centos-8-x86_64.json
index 7030a58..92c1ffb 100644
--- a/centos-8-x86_64.json
+++ b/centos-8-x86_64.json
@@ -1,39 +1,40 @@
{
"variables": {
- "iso_url": "https://mirrors.edge.kernel.org/centos/8/isos/x86_64/CentOS-8-x86_64-1905-boot.iso",
- "iso_checksum_url": "https://mirrors.edge.kernel.org/centos/8/isos/x86_64/CHECKSUM",
+ "iso_base_url": "https://mirrors.edge.kernel.org/centos/8/isos/x86_64",
+ "iso_url": "{{ user `iso_base_url` }}/CentOS-8-x86_64-1905-boot.iso",
+ "iso_checksum_url": "{{ user `iso_base_url` }}/CHECKSUM",
"iso_checksum_type": "sha256",
- "vm_name": "centos-8-x86_64",
- "http_dir": "http",
- "kickstart_path": "centos-8/anaconda-ks.cfg",
- "shutdown_command": "systemctl poweroff",
- "ssh_password": "{{ env `ROOTPW` }}"
+ "vm_name": "centos-8-x86_64",
+ "http_dir": "http",
+ "kickstart_path": "centos-8/anaconda-ks.cfg",
+ "shutdown_command": "systemctl poweroff",
+ "ssh_password": "{{ env `ROOTPW` }}"
},
"builders": [{
- "type": "qemu",
- "accelerator": "kvm",
- "iso_url": "{{ user `iso_url` }}",
- "iso_checksum_url": "{{ user `iso_checksum_url` }}",
+ "type": "qemu",
+ "accelerator": "kvm",
+ "iso_url": "{{ user `iso_url` }}",
+ "iso_checksum_url": "{{ user `iso_checksum_url` }}",
"iso_checksum_type": "{{ user `iso_checksum_type` }}",
- "output_directory": "{{ user `output_directory` }}",
- "vm_name": "{{ user `vm_name` }}",
- "format": "qcow2",
- "disk_size": "{{ user `disk_size` }}",
- "disk_interface": "virtio-scsi",
- "headless": "{{ user `headless` }}",
- "http_directory": "{{ user `http_dir` }}",
- "boot_command": [
+ "output_directory": "{{ user `output_directory` }}",
+ "vm_name": "{{ user `vm_name` }}",
+ "format": "qcow2",
+ "disk_interface": "virtio-scsi",
+ "disk_size": "{{ user `disk_size` }}",
+ "headless": "{{ user `headless` }}",
+ "boot_wait": "{{ user `boot_wait` }}",
+ "ssh_timeout": "{{ user `ssh_timeout` }}",
+ "ssh_username": "{{ user `ssh_username` }}",
+ "ssh_password": "{{ user `ssh_password` }}",
+ "shutdown_command": "{{ user `shutdown_command` }}",
+ "http_directory": "{{ user `http_dir` }}",
+ "boot_command": [
"<esc><wait>",
"linux inst.gpt biosdevname=0 net.ifnames=0 ",
"rootpw={{ user `ssh_password` }} ",
"inst.ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `kickstart_path` }}",
"<enter>"
],
- "boot_wait": "{{ user `boot_wait` }}",
- "ssh_timeout": "{{ user `ssh_timeout` }}",
- "ssh_username": "{{ user `ssh_username` }}",
- "ssh_password": "{{ user `ssh_password` }}",
- "shutdown_command": "{{ user `shutdown_command` }}",
"qemuargs": [
["-m", "{{ user `memory` }}"],
["-smp", "{{ user `cpus` }}"]