mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-05 01:59:44 +01:00
21 lines
439 B
Bash
Executable File
21 lines
439 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set +e
|
|
|
|
STATUS_LOGIN=$(curl --insecure -w '%{http_code}' -d "principal=$1&password=$2" https://localhost/login)
|
|
if [ $STATUS_LOGIN -eq 200 ]; then
|
|
echo "Login Harbor success."
|
|
else
|
|
echo "Login Harbor fail."
|
|
exit 1
|
|
fi
|
|
|
|
|
|
STATUS_LOGOUT=$(curl --insecure -s -o /dev/null -w '%{http_code}' https://localhost/log_out)
|
|
if [ $STATUS_LOGOUT -eq 200 ]; then
|
|
echo "Logout Harbor success."
|
|
else
|
|
echo "Logout Harbor fail."
|
|
exit 1
|
|
fi
|