diff --git a/CHANGELOG b/CHANGELOG index 0a81244..85567b0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -74,7 +74,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * base: dump-server-state.sh upstream release 23.06 * evocheck: upstream release 23.06 * base: add evobsd_alias_fwupdate variable and make kshrc file a template so we can set or not a fw_update alias to servers that need it -* evomaintenance: upstream release 23.10 +* evomaintenance: upstream release 23.10.1 ### Fixed diff --git a/roles/evomaintenance/files/evomaintenance.sh b/roles/evomaintenance/files/evomaintenance.sh index d3ea6de..3ddbdf7 100644 --- a/roles/evomaintenance/files/evomaintenance.sh +++ b/roles/evomaintenance/files/evomaintenance.sh @@ -1,6 +1,6 @@ #!/bin/sh -VERSION="23.10" +VERSION="23.10.1" show_version() { cat <&2 - USER="autosysadmin" + FORCE_USER="autosysadmin" ;; -u|--user) # user options, with value speparated by space if [ -n "$2" ]; then - USER=$2 + FORCE_USER=$2 shift else printf 'ERROR: "--user" requires a non-empty option argument.\n' >&2 @@ -495,7 +495,7 @@ while :; do ;; --user=?*) # message options, with value speparated by = - USER=${1#*=} + FORCE_USER=${1#*=} ;; --user=) # message options, without value