diff options
| author | Colin Percival <cperciva@FreeBSD.org> | 2026-05-16 18:58:13 +0000 |
|---|---|---|
| committer | Colin Percival <cperciva@FreeBSD.org> | 2026-05-21 21:21:13 +0000 |
| commit | b9ee42d7712b809eedf2a70fef9e59139e51ef8c (patch) | |
| tree | f915dadcda028841c4aac509adfe484b7d288202 | |
| parent | df9f5d3ec2afce419f69a65db54a95ceecdca694 (diff) | |
EC2: Don't enable firstboot_pkgs in small flavour
The EC2 "base" flavour installs the devel/py-awscli package at boot
time by default; we don't do this in the "small" flavour, so the
default behaviour was to update the FreeBSD-ports repository and
then do nothing with it.
Turn off firstboot_pkgs by default; if someone is using the "small"
flavour of AMIs and wants to install packages at instance launch
time, they simply need to add 'firstboot_pkgs_enable="YES"' to
/etc/rc.conf (which they must already be editing via user-data, in
order to provide the list of packages they want installed).
Approved by: re (cperciva)
Sponsored by: Amazon
MFC after: 3 days
MFC to: stable/15
Relnotes: EC2 "small" images now have firstboot_pkgs_enable="NO".
(cherry picked from commit 61df4be487cfbfd27b0959e1eb66ef0d8f84562f)
(cherry picked from commit a9e71a2e1ade6f0ce4a59f3a1a2153e1c0eb29b0)
| -rw-r--r-- | release/tools/ec2-small.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/tools/ec2-small.conf b/release/tools/ec2-small.conf index f5904d5ea4ba..6da4444bc835 100644 --- a/release/tools/ec2-small.conf +++ b/release/tools/ec2-small.conf @@ -33,7 +33,7 @@ export VM_EXTRA_PACKAGES="${VM_EXTRA_PACKAGES} ec2-scripts \ # Services to enable in rc.conf(5). export VM_RC_LIST="${VM_RC_LIST} ec2_configinit ec2_ephemeral_swap \ - ec2_fetchkey ec2_loghostkey firstboot_pkg_upgrade firstboot_pkgs \ + ec2_fetchkey ec2_loghostkey firstboot_pkg_upgrade \ growfs sshd" vm_extra_pre_umount() { |
