summaryrefslogtreecommitdiff
path: root/vagrant.json
blob: a52f1449393f46130514d5f9d89ef344218d9c9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
    "variables": {
        "iso_url": "https://downloads.archlinux.de/iso/2017.07.01/archlinux-2017.07.01-x86_64.iso",
        "iso_checksum_type": "sha1",
        "iso_checksum": "dd03d811211c332d29155069d8e4bb2306c70f33",
        "disk_size": "20480",
        "memory": "1024",
        "cpus": "2",
        "headless": "true",
        "atlas_token": "PLACEHOLDER"
    },
    "builders": [
        {
            "type": "virtualbox-iso",
            "boot_wait": "10s",
            "http_directory": "http",
            "disk_size": "{{user `disk_size`}}",
            "guest_os_type": "ArchLinux_64",
            "iso_checksum": "{{user `iso_checksum`}}",
            "iso_checksum_type": "{{user `iso_checksum_type`}}",
            "iso_url": "{{user `iso_url`}}",
            "ssh_username": "vagrant",
            "ssh_password": "vagrant",
            "ssh_port": 22,
            "ssh_wait_timeout": "10000s",
            "shutdown_command": "sudo systemctl poweroff",
            "guest_additions_mode": "disable",
            "headless": "{{user `headless`}}",
            "vboxmanage": [
                [
                    "modifyvm",
                    "{{.Name}}",
                    "--memory",
                    "{{user `memory`}}"
                ],
                [
                    "modifyvm",
                    "{{.Name}}",
                    "--cpus",
                    "{{user `cpus`}}"
                ]
            ],
            "boot_command": [
                "<enter><wait10><wait10><wait10><wait10>",
                "curl -O 'http://{{.HTTPIP}}:{{.HTTPPort}}/install{,-chroot}.sh'<enter><wait>",
                "bash install.sh < install-chroot.sh && systemctl reboot<enter>"
            ]
        }, {
            "type": "qemu",
            "boot_wait": "10s",
            "http_directory": "http",
            "disk_size": "{{user `disk_size`}}",
            "iso_checksum": "{{user `iso_checksum`}}",
            "iso_checksum_type": "{{user `iso_checksum_type`}}",
            "iso_url": "{{user `iso_url`}}",
            "ssh_username": "vagrant",
            "ssh_password": "vagrant",
            "ssh_port": 22,
            "ssh_wait_timeout": "10000s",
            "shutdown_command": "sudo systemctl poweroff",
            "headless": "{{user `headless`}}",
            "qemuargs": [
                [
                    "-m",
                    "{{user `memory`}}"
                ],
                [
                    "-smp",
                    "{{user `cpus`}}"
                ]
            ],
            "boot_command": [
                "<enter><wait10><wait10><wait10><wait10>",
                "curl -O 'http://{{.HTTPIP}}:{{.HTTPPort}}/install{,-chroot}.sh'<enter><wait>",
                "bash install.sh < install-chroot.sh && systemctl reboot<enter>"
            ]
        }, {
            "type": "vmware-iso",
            "boot_wait": "10s",
            "http_directory": "http",
            "disk_size": "{{user `disk_size`}}",
            "iso_checksum": "{{user `iso_checksum`}}",
            "iso_checksum_type": "{{user `iso_checksum_type`}}",
            "iso_url": "{{user `iso_url`}}",
            "ssh_username": "vagrant",
            "ssh_password": "vagrant",
            "ssh_port": 22,
            "ssh_wait_timeout": "10000s",
            "shutdown_command": "sudo systemctl poweroff",
            "headless": "{{user `headless`}}",
            "vmx_data": {"memsize": "{{user `memory`}}"},
            "boot_command": [
                "<enter><wait10><wait10><wait10><wait10>",
                "curl -O 'http://{{.HTTPIP}}:{{.HTTPPort}}/install{,-chroot}.sh'<enter><wait>",
                "bash install.sh < install-chroot.sh && systemctl reboot<enter>"
            ]
        }

    ],
    "provisioners": [
        {
            "type": "shell",
            "scripts": [
                "provision/postinstall.sh",
                "provision/virtualbox.sh",
                "provision/cleanup.sh"
            ],
            "execute_command": "echo 'vagrant'|sudo -S sh '{{.Path}}'",
            "only": ["virtualbox-iso"]
        },
        {
            "type": "shell",
            "scripts": [
                "provision/postinstall.sh",
                "provision/qemu.sh",
                "provision/cleanup.sh"
            ],
            "execute_command": "echo 'vagrant'|sudo -S sh '{{.Path}}'",
            "only": ["qemu"]
        },
        {
            "type": "shell",
            "scripts": [
                "provision/postinstall.sh",
                "provision/vmware.sh",
                "provision/cleanup.sh"
            ],
            "execute_command": "echo 'vagrant'|sudo -S sh '{{.Path}}'",
            "only": ["vmware-iso"]
        }
    ],
    "post-processors": [
        {
            "type": "vagrant",
            "keep_input_artifact": true,
            "output": "Arch-Linux-x86_64-{{ .Provider }}-{{isotime \"2006-01-02\"}}.box"
        },
        {
            "type": "vagrant-cloud",
            "only": ["virtualbox-iso"],
            "access_token": "{{user `atlas_token`}}",
            "box_tag": "archlinux/archlinux",
            "version": "{{isotime \"2006.01.02\"}}"
        },
        {
            "type": "vagrant-cloud",
            "only": ["qemu"],
            "access_token": "{{user `atlas_token`}}",
            "box_tag": "archlinux/archlinux",
            "version": "{{isotime \"2006.01.02\"}}"
        },
        {
            "type": "vagrant-cloud",
            "only": ["vmware-iso"],
            "access_token": "{{user `atlas_token`}}",
            "box_tag": "archlinux/archlinux",
            "version": "{{isotime \"2006.01.02\"}}"
        }
    ]
}