diff options
| author | Colin Percival <cperciva@FreeBSD.org> | 2020-05-17 21:54:59 +0000 |
|---|---|---|
| committer | Colin Percival <cperciva@FreeBSD.org> | 2020-05-17 21:54:59 +0000 |
| commit | ba97bfb0de8402acaa4aa9a8bdc9b153b267518e (patch) | |
| tree | 39ce447b922fcff94c9ff2128c57f9165ff3e70c /release | |
| parent | 355711ea7628218bdf39cbe732caf1496d0dce90 (diff) | |
Notes
Diffstat (limited to 'release')
| -rw-r--r-- | release/tools/ec2.conf | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/release/tools/ec2.conf b/release/tools/ec2.conf index 147ee17a3609..a4b0abc8a1da 100644 --- a/release/tools/ec2.conf +++ b/release/tools/ec2.conf @@ -113,6 +113,23 @@ vm_extra_pre_umount() { -e '1,/^#server/s/^#server.*/server 169.254.169.123 iburst/' \ ${DESTDIR}/etc/ntp.conf + # Provide a map for accessing Elastic File System mounts + cat > ${DESTDIR}/etc/autofs/special_efs <<'EOF' +#!/bin/sh + +if [ $# -eq 0 ]; then + # No way to know which EFS filesystems exist and are + # accessible to this EC2 instance. + exit 0 +fi + +# Provide instructions on how to mount the requested filesystem. +FS=$1 +REGION=`fetch -qo- http://169.254.169.254/latest/meta-data/placement/availability-zone | sed -e 's/[a-z]$//'` +echo "-nfsv4,minorversion=1,oneopenown ${FS}.efs.${REGION}.amazonaws.com:/" +EOF + chmod 755 ${DESTDIR}/etc/autofs/special_efs + # The first time the AMI boots, the installed "first boot" scripts # should be allowed to run: # * ec2_configinit (download and process EC2 user-data) |
