ec2-cloud-init.conf (2039437c7655c9cd481c6c4ad92b6bc2a945dd14) | ec2-cloud-init.conf (40ff0753abb9c00b5f1e5df9ea00c9fdded55ac4) |
---|---|
1#!/bin/sh 2 3. ${WORLDDIR}/release/tools/ec2.conf 4 5# Packages to install into the image we're creating. In addition to packages | 1#!/bin/sh 2 3. ${WORLDDIR}/release/tools/ec2.conf 4 5# Packages to install into the image we're creating. In addition to packages |
6# present on all EC2 AMIs, we install cloud-init. 7export VM_EXTRA_PACKAGES="${VM_EXTRA_PACKAGES} net/cloud-init" | 6# present on all EC2 AMIs, we install amazon-ssm-agent and cloud-init. 7export VM_EXTRA_PACKAGES="${VM_EXTRA_PACKAGES} amazon-ssm-agent net/cloud-init" |
8 9# Services to enable in rc.conf(5). 10export VM_RC_LIST="${VM_RC_LIST} cloudinit sshd" 11 12vm_extra_pre_umount() { 13 # Configuration common to all EC2 AMIs 14 ec2_common 15 --- 17 unchanged lines hidden --- | 8 9# Services to enable in rc.conf(5). 10export VM_RC_LIST="${VM_RC_LIST} cloudinit sshd" 11 12vm_extra_pre_umount() { 13 # Configuration common to all EC2 AMIs 14 ec2_common 15 --- 17 unchanged lines hidden --- |