From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] aws: Enable serial console by default Date: Tue, 13 Jul 2021 10:11:31 +0000 Message-ID: <20210713101131.6021-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7793273055059231437==" List-Id: --===============7793273055059231437== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable AWS for some time now has a serial console feature which is enabled by default on all systems. The VGA console is not enabled for any new non-x86 instance types and not interactive. Signed-off-by: Michael Tremer --- src/initscripts/system/partresize | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/initscripts/system/partresize b/src/initscripts/system/partr= esize index 20044b083..4fa1906d0 100644 --- a/src/initscripts/system/partresize +++ b/src/initscripts/system/partresize @@ -45,8 +45,9 @@ case "${1}" in esac fi =20 - # Enable the serial console on all systems on Azure and Google Compute Pl= atform - if running_on_azure || running_on_gcp; then + # Enable the serial console on all systems on AWS EC2, Azure + # and Google Compute Platform + if running_on_ec2 || running_on_azure || running_on_gcp; then scon=3D"on" fi =20 --=20 2.20.1 --===============7793273055059231437==--