From a853b8849f5b8069a8f58049a5ae0e012c6724aa Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Thu, 11 Apr 2024 21:53:52 +0000 Subject: [PATCH] install: Actually add --puppet-classes argument. 7187146422c7 only added it to the internal parsing and the help, not the getopt invocation which would make the command accept the argument. --- scripts/lib/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/install b/scripts/lib/install index d57ecdcc6e..6b00b8a803 100755 --- a/scripts/lib/install +++ b/scripts/lib/install @@ -69,7 +69,7 @@ EOF # Shell option parsing. Over time, we'll want to move some of the # environment variables below into this self-documenting system. -args="$(getopt -o '' --long help,hostname:,email:,certbot,self-signed-cert,cacert:,postgresql-database-name:,postgresql-database-user:,postgresql-version:,postgresql-missing-dictionaries,no-init-db,no-overwrite-settings,no-dist-upgrade -n "$0" -- "$@")" +args="$(getopt -o '' --long help,hostname:,email:,certbot,self-signed-cert,cacert:,postgresql-database-name:,postgresql-database-user:,postgresql-version:,postgresql-missing-dictionaries,no-init-db,puppet-classes:,no-overwrite-settings,no-dist-upgrade -n "$0" -- "$@")" eval "set -- $args" while true; do case "$1" in