From e2d9fe7e166dc3dbf50d5d2cfe27b0d9abcb9f45 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 12 Jul 2018 13:55:38 +0100 Subject: [PATCH 1/1] aws: setup user should not be a system user Login is not permitted for system users Signed-off-by: Michael Tremer --- src/initscripts/helper/aws-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/initscripts/helper/aws-setup b/src/initscripts/helper/aws-setup index a273aff7d4..125cacc1f8 100644 --- a/src/initscripts/helper/aws-setup +++ b/src/initscripts/helper/aws-setup @@ -86,7 +86,7 @@ import_aws_configuration() { # Create setup user if ! getent passwd setup &>/dev/null; then - useradd -r setup -s /usr/bin/run-setup -g nobody -m + useradd setup -s /usr/bin/run-setup -g nobody -m fi # Import SSH keys -- 2.39.5