mirror of
https://gitlab.com/psuapp/psu.git
synced 2024-08-30 18:12:34 +00:00
Redirected error messages to stderr
This commit is contained in:
parent
96ef7b19fa
commit
14039d9fe4
22
psu
22
psu
@ -14,8 +14,8 @@ check_argument () {
|
|||||||
local argument_envvar=$3
|
local argument_envvar=$3
|
||||||
local argument_flag=$4
|
local argument_flag=$4
|
||||||
if [ -z "$argument_value" ]; then
|
if [ -z "$argument_value" ]; then
|
||||||
echo "Error: Missing argument \"$argument_name\"."
|
>&2 echo "Error: Missing argument \"$argument_name\"."
|
||||||
echo "Try setting \"$argument_envvar\" environment variable or using the \"-$argument_flag\" flag."
|
>&2 echo "Try setting \"$argument_envvar\" environment variable or using the \"-$argument_flag\" flag."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -31,12 +31,12 @@ check_for_errors () {
|
|||||||
local response=$2
|
local response=$2
|
||||||
if [ $exit_code -ne 0 ]; then
|
if [ $exit_code -ne 0 ]; then
|
||||||
case $exit_code in
|
case $exit_code in
|
||||||
2) echo 'Request timed out!' ;;
|
2) >&2 echo 'Request timed out!' ;;
|
||||||
3) echo 'Unexpected HTTP 3xx Redirection!' ;;
|
3) >&2 echo 'Unexpected HTTP 3xx Redirection!' ;;
|
||||||
4) echo 'HTTP 4xx Client Error!' && echo $response ;;
|
4) >&2 echo 'HTTP 4xx Client Error!' && echo $response ;;
|
||||||
5) echo 'HTTP 5xx Server Error!' && echo $response ;;
|
5) >&2 echo 'HTTP 5xx Server Error!' && echo $response ;;
|
||||||
6) echo 'Exceeded --max-redirects=<n> redirects!' ;;
|
6) >&2 echo 'Exceeded --max-redirects=<n> redirects!' ;;
|
||||||
*) echo 'Unholy Error!' ;;
|
*) >&2 echo 'Unholy Error!' ;;
|
||||||
esac
|
esac
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
@ -155,7 +155,7 @@ deploy () {
|
|||||||
rm json.tmp
|
rm json.tmp
|
||||||
else
|
else
|
||||||
if [ $STRICT_MODE == "true" ]; then
|
if [ $STRICT_MODE == "true" ]; then
|
||||||
echo "Error: Stack $PORTAINER_STACK_NAME already exists."
|
>&2 echo "Error: Stack $PORTAINER_STACK_NAME already exists."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
echo_verbose "Stack $PORTAINER_STACK_NAME exists."
|
echo_verbose "Stack $PORTAINER_STACK_NAME exists."
|
||||||
@ -192,7 +192,7 @@ deploy () {
|
|||||||
undeploy () {
|
undeploy () {
|
||||||
if [ -z "$STACK" ]; then
|
if [ -z "$STACK" ]; then
|
||||||
if [ $STRICT_MODE == "true" ]; then
|
if [ $STRICT_MODE == "true" ]; then
|
||||||
echo "Error: Stack $PORTAINER_STACK_NAME does not exist."
|
>&2 echo "Error: Stack $PORTAINER_STACK_NAME does not exist."
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo_verbose "Stack $PORTAINER_STACK_NAME does not exist. No need to undeploy it."
|
echo_verbose "Stack $PORTAINER_STACK_NAME does not exist. No need to undeploy it."
|
||||||
@ -309,5 +309,5 @@ if [ $ACTION == "undeploy" ]; then
|
|||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Error: Unknown action \"$ACTION\"."
|
>&2 echo "Error: Unknown action \"$ACTION\"."
|
||||||
exit 1
|
exit 1
|
||||||
|
Loading…
Reference in New Issue
Block a user