From: Michael Tremer Date: Thu, 12 Jul 2018 12:55:38 +0000 (+0100) Subject: aws: setup user should not be a system user X-Git-Tag: v2.21-core123~59 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e2d9fe7e166dc3dbf50d5d2cfe27b0d9abcb9f45;p=people%2Fstevee%2Fipfire-2.x.git aws: setup user should not be a system user Login is not permitted for system users Signed-off-by: Michael Tremer --- 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