Remove non-breaking space character
This commit is contained in:
parent
3a9bcb6979
commit
965fc3dd0e
|
@ -42,10 +42,10 @@ usage() { # {{{
|
||||||
usage: $PROGNAME
|
usage: $PROGNAME
|
||||||
|
|
||||||
Compare current version of Maco script with the latest and
|
Compare current version of Maco script with the latest and
|
||||||
the urgent versions then try to prepare the host by :
|
the urgent versions then try to prepare the host by:
|
||||||
* Disabling SGE queue
|
* Disabling SGE queue
|
||||||
|
|
||||||
EXAMPLES :
|
EXAMPLES:
|
||||||
- Verify Maco's upgrade and prepare the current host
|
- Verify Maco's upgrade and prepare the current host
|
||||||
${PROGNAME}
|
${PROGNAME}
|
||||||
EOF
|
EOF
|
||||||
|
@ -57,7 +57,7 @@ debug_message() { # {{{
|
||||||
local_debug_message="${1}"
|
local_debug_message="${1}"
|
||||||
|
|
||||||
## Print message if DEBUG is enable (=0)
|
## Print message if DEBUG is enable (=0)
|
||||||
[ "${DEBUG}" -eq "0" ] && printf '\e[1;35m%-6b\e[m\n' "DEBUG − ${PROGNAME} : ${local_debug_message}"
|
[ "${DEBUG}" -eq "0" ] && printf '\e[1;35m%-6b\e[m\n' "DEBUG − ${PROGNAME}: ${local_debug_message}"
|
||||||
|
|
||||||
}
|
}
|
||||||
# }}}
|
# }}}
|
||||||
|
@ -129,7 +129,7 @@ Latest Maco upgrade is available (from version ${CURRENT_MACO_VERSION} to ${LATE
|
||||||
return_upgrade="0"
|
return_upgrade="0"
|
||||||
else
|
else
|
||||||
debug_message "is_maco_upgrade_require − \
|
debug_message "is_maco_upgrade_require − \
|
||||||
Local Maco (${CURRENT_MACO_VERSION}) seems up to date (latest : ${LATEST_MACO_VERSION})."
|
Local Maco (${CURRENT_MACO_VERSION}) seems up to date (latest: ${LATEST_MACO_VERSION})."
|
||||||
return_upgrade="1"
|
return_upgrade="1"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -143,8 +143,8 @@ is_maco_uptodate() { # {{{
|
||||||
|
|
||||||
if [ "${CURRENT_TIMESTAMP}" = "${LATEST_TIMESTAMP}" ]; then
|
if [ "${CURRENT_TIMESTAMP}" = "${LATEST_TIMESTAMP}" ]; then
|
||||||
debug_message "is_maco_uptodate − \
|
debug_message "is_maco_uptodate − \
|
||||||
Local Maco (${CURRENT_MACO_VERSION}) is up to date (latest : ${LATEST_MACO_VERSION})."
|
Local Maco (${CURRENT_MACO_VERSION}) is up to date (latest: ${LATEST_MACO_VERSION})."
|
||||||
message "Local Maco (${CURRENT_MACO_VERSION}) is up to date (latest : ${LATEST_MACO_VERSION})."
|
message "Local Maco (${CURRENT_MACO_VERSION}) is up to date (latest: ${LATEST_MACO_VERSION})."
|
||||||
return_uptodate="0"
|
return_uptodate="0"
|
||||||
else
|
else
|
||||||
debug_message "is_maco_uptodate − \
|
debug_message "is_maco_uptodate − \
|
||||||
|
|
Loading…
Reference in New Issue