|
|
@ -9,7 +9,7 @@
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Following environment variables must be set:
|
|
|
|
# Following environment variables must be set:
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# export DEPLOY_TRUENAS_APIKEY="<API_KEY_GENERATED_IN_THE_WEB_UI"
|
|
|
|
# export DEPLOY_TRUENAS_APIKEY="<API_KEY_GENERATED_IN_THE_WEB_UI>"
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# The following environmental variables may be set if you don't like their
|
|
|
|
# The following environmental variables may be set if you don't like their
|
|
|
|
# default values:
|
|
|
|
# default values:
|
|
|
@ -64,6 +64,20 @@ truenas_deploy() {
|
|
|
|
_response=$(_get "$_api_url/system/state")
|
|
|
|
_response=$(_get "$_api_url/system/state")
|
|
|
|
_info "TrueNAS system state: $_response."
|
|
|
|
_info "TrueNAS system state: $_response."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_info "Getting TrueNAS version"
|
|
|
|
|
|
|
|
_response=$(_get "$_api_url/system/version")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if echo "$_response" | grep -q "SCALE"; then
|
|
|
|
|
|
|
|
_truenas_os=$(echo "$_response" | cut -d '-' -f 2)
|
|
|
|
|
|
|
|
_truenas_version=$(echo "$_response" | cut -d '-' -f 3 | tr -d '"' | cut -d '.' -f 1,2)
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
_truenas_os="unknown"
|
|
|
|
|
|
|
|
_truenas_version="unknown"
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_info "Detected TrueNAS system os: $_truenas_os"
|
|
|
|
|
|
|
|
_info "Detected TrueNAS system version: $_truenas_version"
|
|
|
|
|
|
|
|
|
|
|
|
if [ -z "$_response" ]; then
|
|
|
|
if [ -z "$_response" ]; then
|
|
|
|
_err "Unable to authenticate to $_api_url."
|
|
|
|
_err "Unable to authenticate to $_api_url."
|
|
|
|
_err 'Check your connection settings are correct, e.g.'
|
|
|
|
_err 'Check your connection settings are correct, e.g.'
|
|
|
@ -115,6 +129,11 @@ truenas_deploy() {
|
|
|
|
|
|
|
|
|
|
|
|
_debug3 _activate_result "$_activate_result"
|
|
|
|
_debug3 _activate_result "$_activate_result"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_truenas_version_23_10="23.10"
|
|
|
|
|
|
|
|
_truenas_version_24_10="24.10"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_check_version=$(printf "%s\n%s" "$_truenas_version_23_10" "$_truenas_version" | sort -V | head -n 1)
|
|
|
|
|
|
|
|
if [ "$_truenas_os" != "SCALE" ] || [ "$_check_version" != "$_truenas_version_23_10" ]; then
|
|
|
|
_info "Checking if WebDAV certificate is the same as the TrueNAS web UI"
|
|
|
|
_info "Checking if WebDAV certificate is the same as the TrueNAS web UI"
|
|
|
|
_webdav_list=$(_get "$_api_url/webdav")
|
|
|
|
_webdav_list=$(_get "$_api_url/webdav")
|
|
|
|
_webdav_cert_id=$(echo "$_webdav_list" | grep '"certssl":' | tr -d -- '"certsl: ,')
|
|
|
|
_webdav_cert_id=$(echo "$_webdav_list" | grep '"certssl":' | tr -d -- '"certsl: ,')
|
|
|
@ -138,29 +157,6 @@ truenas_deploy() {
|
|
|
|
_info "WebDAV certificate is not configured or is not the same as TrueNAS web UI"
|
|
|
|
_info "WebDAV certificate is not configured or is not the same as TrueNAS web UI"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
_info "Checking if FTP certificate is the same as the TrueNAS web UI"
|
|
|
|
|
|
|
|
_ftp_list=$(_get "$_api_url/ftp")
|
|
|
|
|
|
|
|
_ftp_cert_id=$(echo "$_ftp_list" | grep '"ssltls_certificate":' | tr -d -- '"certislfa:_ ,')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if [ "$_ftp_cert_id" = "$_active_cert_id" ]; then
|
|
|
|
|
|
|
|
_info "Updating the FTP certificate"
|
|
|
|
|
|
|
|
_debug _ftp_cert_id "$_ftp_cert_id"
|
|
|
|
|
|
|
|
_ftp_data="{\"ssltls_certificate\": \"${_cert_id}\"}"
|
|
|
|
|
|
|
|
_activate_ftp_cert="$(_post "$_ftp_data" "$_api_url/ftp" "" "PUT" "application/json")"
|
|
|
|
|
|
|
|
_ftp_new_cert_id=$(echo "$_activate_ftp_cert" | _json_decode | grep '"ssltls_certificate":' | sed -n 's/.*: \([0-9]\{1,\}\),\{0,1\}$/\1/p')
|
|
|
|
|
|
|
|
if [ "$_ftp_new_cert_id" -eq "$_cert_id" ]; then
|
|
|
|
|
|
|
|
_info "FTP certificate updated successfully"
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
_err "Unable to set FTP certificate"
|
|
|
|
|
|
|
|
_debug3 _activate_ftp_cert "$_activate_ftp_cert"
|
|
|
|
|
|
|
|
_debug3 _ftp_new_cert_id "$_ftp_new_cert_id"
|
|
|
|
|
|
|
|
return 1
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
_debug3 _activate_ftp_cert "$_activate_ftp_cert"
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
_info "FTP certificate is not configured or is not the same as TrueNAS web UI"
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_info "Checking if S3 certificate is the same as the TrueNAS web UI"
|
|
|
|
_info "Checking if S3 certificate is the same as the TrueNAS web UI"
|
|
|
|
_s3_list=$(_get "$_api_url/s3")
|
|
|
|
_s3_list=$(_get "$_api_url/s3")
|
|
|
|
_s3_cert_id=$(echo "$_s3_list" | grep '"certificate":' | tr -d -- '"certifa:_ ,')
|
|
|
|
_s3_cert_id=$(echo "$_s3_list" | grep '"certificate":' | tr -d -- '"certifa:_ ,')
|
|
|
@ -183,7 +179,11 @@ truenas_deploy() {
|
|
|
|
else
|
|
|
|
else
|
|
|
|
_info "S3 certificate is not configured or is not the same as TrueNAS web UI"
|
|
|
|
_info "S3 certificate is not configured or is not the same as TrueNAS web UI"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if [ "$_truenas_os" = "SCALE" ]; then
|
|
|
|
|
|
|
|
_check_version=$(printf "%s\n%s" "$_truenas_version_24_10" "$_truenas_version" | sort -V | head -n 1)
|
|
|
|
|
|
|
|
if [ "$_check_version" != "$_truenas_version_24_10" ]; then
|
|
|
|
_info "Checking if any chart release Apps is using the same certificate as TrueNAS web UI. Tool 'jq' is required"
|
|
|
|
_info "Checking if any chart release Apps is using the same certificate as TrueNAS web UI. Tool 'jq' is required"
|
|
|
|
if _exists jq; then
|
|
|
|
if _exists jq; then
|
|
|
|
_info "Query all chart release"
|
|
|
|
_info "Query all chart release"
|
|
|
@ -204,6 +204,55 @@ truenas_deploy() {
|
|
|
|
else
|
|
|
|
else
|
|
|
|
_info "Tool 'jq' does not exists, skip chart release checking"
|
|
|
|
_info "Tool 'jq' does not exists, skip chart release checking"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
_info "Checking if any app is using the same certificate as TrueNAS web UI. Tool 'jq' is required"
|
|
|
|
|
|
|
|
if _exists jq; then
|
|
|
|
|
|
|
|
_info "Query all apps"
|
|
|
|
|
|
|
|
_app_list=$(_get "$_api_url/app")
|
|
|
|
|
|
|
|
_app_id_list=$(printf "%s" "$_app_list" | jq -r '.[].name')
|
|
|
|
|
|
|
|
_app_length=$(echo "$_app_id_list" | wc -l)
|
|
|
|
|
|
|
|
_info "Found $_app_length apps"
|
|
|
|
|
|
|
|
_info "Checking for each app if an update is needed"
|
|
|
|
|
|
|
|
for i in $(seq 1 "$_app_length"); do
|
|
|
|
|
|
|
|
_app_id=$(echo "$_app_id_list" | sed -n "${i}p")
|
|
|
|
|
|
|
|
_app_config="$(_post "\"$_app_id\"" "$_api_url/app/config" "" "POST" "application/json")"
|
|
|
|
|
|
|
|
# Check if the app use the same certificate TrueNAS web UI
|
|
|
|
|
|
|
|
_app_active_cert_config=$(echo "$_app_config" | _json_decode | jq -r ".ix_certificates[\"$_active_cert_id\"]")
|
|
|
|
|
|
|
|
if [ "$_app_active_cert_config" != "null" ]; then
|
|
|
|
|
|
|
|
_info "Updating certificate from $_active_cert_id to $_cert_id for app: $_app_id"
|
|
|
|
|
|
|
|
#Replace the old certificate id with the new one in path
|
|
|
|
|
|
|
|
_update_app_result="$(_post "{\"values\" : { \"network\": { \"certificate_id\": $_cert_id } } }" "$_api_url/app/id/$_app_id" "" "PUT" "application/json")"
|
|
|
|
|
|
|
|
_debug3 _update_app_result "$_update_app_result"
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
done
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
_info "Tool 'jq' does not exists, skip app checking"
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_info "Checking if FTP certificate is the same as the TrueNAS web UI"
|
|
|
|
|
|
|
|
_ftp_list=$(_get "$_api_url/ftp")
|
|
|
|
|
|
|
|
_ftp_cert_id=$(echo "$_ftp_list" | grep '"ssltls_certificate":' | tr -d -- '"certislfa:_ ,')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if [ "$_ftp_cert_id" = "$_active_cert_id" ]; then
|
|
|
|
|
|
|
|
_info "Updating the FTP certificate"
|
|
|
|
|
|
|
|
_debug _ftp_cert_id "$_ftp_cert_id"
|
|
|
|
|
|
|
|
_ftp_data="{\"ssltls_certificate\": \"${_cert_id}\"}"
|
|
|
|
|
|
|
|
_activate_ftp_cert="$(_post "$_ftp_data" "$_api_url/ftp" "" "PUT" "application/json")"
|
|
|
|
|
|
|
|
_ftp_new_cert_id=$(echo "$_activate_ftp_cert" | _json_decode | grep '"ssltls_certificate":' | sed -n 's/.*: \([0-9]\{1,\}\),\{0,1\}$/\1/p')
|
|
|
|
|
|
|
|
if [ "$_ftp_new_cert_id" -eq "$_cert_id" ]; then
|
|
|
|
|
|
|
|
_info "FTP certificate updated successfully"
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
_err "Unable to set FTP certificate"
|
|
|
|
|
|
|
|
_debug3 _activate_ftp_cert "$_activate_ftp_cert"
|
|
|
|
|
|
|
|
_debug3 _ftp_new_cert_id "$_ftp_new_cert_id"
|
|
|
|
|
|
|
|
return 1
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
_debug3 _activate_ftp_cert "$_activate_ftp_cert"
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
_info "FTP certificate is not configured or is not the same as TrueNAS web UI"
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
_info "Deleting old certificate"
|
|
|
|
_info "Deleting old certificate"
|
|
|
|
_delete_result="$(_post "" "$_api_url/certificate/id/$_active_cert_id" "" "DELETE" "application/json")"
|
|
|
|
_delete_result="$(_post "" "$_api_url/certificate/id/$_active_cert_id" "" "DELETE" "application/json")"
|
|
|
|