summaryrefslogtreecommitdiffstats
path: root/centos-7.4-x86_64.json
diff options
context:
space:
mode:
authorJonathan Bauer2017-12-15 11:38:13 +0100
committerJonathan Bauer2017-12-15 11:38:13 +0100
commit6583aadc2c4c8680043f06d23f82532aa0aab020 (patch)
treecbd617caecbb3206ca6b66a91b454a7e2f15dbba /centos-7.4-x86_64.json
parentupdate ansible-roles commit (diff)
downloadpacker-templates-6583aadc2c4c8680043f06d23f82532aa0aab020.tar.gz
packer-templates-6583aadc2c4c8680043f06d23f82532aa0aab020.tar.xz
packer-templates-6583aadc2c4c8680043f06d23f82532aa0aab020.zip
centos-7.4-x86_64 template
Diffstat (limited to 'centos-7.4-x86_64.json')
-rw-r--r--centos-7.4-x86_64.json99
1 files changed, 99 insertions, 0 deletions
diff --git a/centos-7.4-x86_64.json b/centos-7.4-x86_64.json
new file mode 100644
index 0000000..e117efe
--- /dev/null
+++ b/centos-7.4-x86_64.json
@@ -0,0 +1,99 @@
+{
+ "variables": {
+ "iso_url": "http://mirror1.hs-esslingen.de/pub/Mirrors/centos/7/isos/x86_64/CentOS-7-x86_64-NetInstall-1708.iso",
+ "iso_checksum": "fe3d960cce4d2c1c9f1b66817fe87cc0ee1a1c6c5dd126204cb5c33d51a45620",
+ "iso_checksum_type": "sha256",
+ "vm_name": "centos-7.4-x86_64",
+ "http_dir": "http",
+ "kickstart_path": "centos-7.3/anaconda-ks.cfg",
+ "shutdown_command": "systemctl poweroff",
+ "ssh_password": "{{ env `ROOTPW` }}"
+ },
+ "builders": [{
+ "type": "qemu",
+ "iso_url": "{{ user `iso_url` }}",
+ "iso_checksum": "{{ user `iso_checksum` }}",
+ "iso_checksum_type": "{{ user `iso_checksum_type` }}",
+ "output_directory": "output-{{ user `vm_name` }}-{{ build_type }}",
+ "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": [
+ "<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` }}"]
+ ]
+ }, {
+ "type": "virtualbox-iso",
+ "guest_os_type": "RedHat_64",
+ "iso_url": "{{ user `iso_url` }}",
+ "iso_checksum": "{{ user `iso_checksum` }}",
+ "iso_checksum_type": "{{ user `iso_checksum_type` }}",
+ "output_directory": "output-{{ user `vm_name` }}-{{ build_type }}",
+ "vm_name": "{{ user `vm_name` }}",
+ "disk_size": "{{ user `disk_size` }}",
+ "headless": "{{ user `headless` }}",
+ "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` }}",
+ "vboxmanage": [
+ ["modifyvm", "{{ .Name }}", "--memory", "{{ user `memory` }}"],
+ ["modifyvm", "{{ .Name }}", "--cpus", "{{ user `cpus` }}"]
+ ]
+ }, {
+ "type": "vmware-iso",
+ "guest_os_type": "centos-64",
+ "iso_url": "{{ user `iso_url` }}",
+ "iso_checksum": "{{ user `iso_checksum` }}",
+ "iso_checksum_type": "{{ user `iso_checksum_type` }}",
+ "output_directory": "output-{{ user `vm_name` }}-{{ build_type }}",
+ "vm_name": "{{ user `vm_name` }}",
+ "disk_size": "{{ user `disk_size` }}",
+ "headless": "{{ user `headless` }}",
+ "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` }}",
+ "vmx_data": {
+ "memsize": "{{ user `memory` }}",
+ "numvcpus": "{{ user `cpus` }}"
+ }
+ }],
+ "post-processors": [{
+ "type": "manifest",
+ "output": "output-{{ user `vm_name` }}-{{ build_type }}/manifest.json"
+ }]
+}