Skip to content

Commit

Permalink
Do not install cloud-init by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jlduran committed Sep 4, 2023
1 parent 2530c4f commit fe352a3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,22 +178,22 @@ values, and invoke:
You can also select which components you wish to install. By default,
it runs the following provisioning scripts:

| Name | Description |
| ---- | ----------- |
| [`update`] | Updates to the latest patch level (if applicable) and the latest packages |
| [`vagrant`] | Vagrant-related configuration |
| [`zeroconf`] | Enables zero-configuration networking |
| [`ansible`] | Installs python and CA Root certificates |
| [`cloud-init`] | Installs cloud-init |
| [`vmtools`] | Virtual Machine-specific utilities |
| [`cleanup`] | Cleanup script (must be called last) |
| Name | Description |
| ---- | ----------- |
| [`update`] | Updates to the latest patch level (if applicable) and the latest packages |
| [`vagrant`] | Vagrant-related configuration |
| [`zeroconf`] | Enables zero-configuration networking |
| [`ansible`] | Installs python and CA Root certificates |
| [`vmtools`] | Virtual Machine-specific utilities |
| [`cleanup`] | Cleanup script (must be called last) |

The following scripts are also available:

| Name | Description |
| ---- | ----------- |
| [`hardening`] | Provides basic hardening options |
| [`ports`] | Installs the FreeBSD ports tree |
| Name | Description |
| ---- | ----------- |
| [`cloud-init`] | Installs cloud-init |
| [`hardening`] | Provides basic hardening options |
| [`ports`] | Installs the FreeBSD ports tree |

### Handling `.iso` and `.box` files

Expand Down
2 changes: 1 addition & 1 deletion packer.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ build {

provisioner "shell" {
execute_command = "chmod +x {{ .Path }}; env {{ .Vars }} {{ .Path }}"
scripts = ["scripts/update.sh", "scripts/vagrant.sh", "scripts/zeroconf.sh", "scripts/ansible.sh", "scripts/cloud-init.sh", "scripts/vmtools.sh", "scripts/cleanup.sh"]
scripts = ["scripts/update.sh", "scripts/vagrant.sh", "scripts/zeroconf.sh", "scripts/ansible.sh", "scripts/vmtools.sh", "scripts/cleanup.sh"]
}

post-processor "vagrant" {
Expand Down

0 comments on commit fe352a3

Please sign in to comment.