ec2.conf (f961ddb28d6909d4c67e3e0b6b60498bbcbf64cb) | ec2.conf (40ff0753abb9c00b5f1e5df9ea00c9fdded55ac4) |
---|---|
1#!/bin/sh 2 | 1#!/bin/sh 2 |
3# Packages which should be installed onto all EC2 AMIs: | 3# Package which should be installed onto all EC2 AMIs: |
4# * ebsnvme-id, which is very minimal and provides important EBS-specific 5# functionality, | 4# * ebsnvme-id, which is very minimal and provides important EBS-specific 5# functionality, |
6# * amazon-ssm-agent (not enabled by default, but some users need to use 7# it on systems not connected to the internet). 8export VM_EXTRA_PACKAGES="${VM_EXTRA_PACKAGES} ebsnvme-id amazon-ssm-agent" | 6export VM_EXTRA_PACKAGES="${VM_EXTRA_PACKAGES} ebsnvme-id" |
9 10# Services which should be enabled by default in rc.conf(5). 11export VM_RC_LIST="dev_aws_disk ntpd" 12 13# Build with a 7.9 GB partition; the growfs rc.d script will expand 14# the partition to fill the root disk after the EC2 instance is launched. 15# Note that if this is set to <N>G, we will end up with an <N+1> GB disk 16# image since VMSIZE is the size of the filesystem partition, not the disk --- 117 unchanged lines hidden --- | 7 8# Services which should be enabled by default in rc.conf(5). 9export VM_RC_LIST="dev_aws_disk ntpd" 10 11# Build with a 7.9 GB partition; the growfs rc.d script will expand 12# the partition to fill the root disk after the EC2 instance is launched. 13# Note that if this is set to <N>G, we will end up with an <N+1> GB disk 14# image since VMSIZE is the size of the filesystem partition, not the disk --- 117 unchanged lines hidden --- |