4.3.0
This commit is contained in:
87
scripts/install.bat
Normal file
87
scripts/install.bat
Normal file
@@ -0,0 +1,87 @@
|
||||
:: Copyright (c) 2019-2023 Digital Energy Cloud Solutions LLC. All Rights Reserved.
|
||||
:: Authors:
|
||||
:: Tim Tkachev, <tvtkachev@basistech.ru>
|
||||
::
|
||||
:: Licensed under the Apache License, Version 2.0 (the "License");
|
||||
:: you may not use this file except in compliance with the License.
|
||||
:: You may obtain a copy of the License at
|
||||
::
|
||||
:: http://www.apache.org/licenses/LICENSE-2.0
|
||||
::
|
||||
:: Unless required by applicable law or agreed to in writing, software
|
||||
:: distributed under the License is distributed on an "AS IS" BASIS,
|
||||
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
:: See the License for the specific language governing permissions and
|
||||
:: limitations under the License.
|
||||
::
|
||||
:: Installer uses basis/decort/decort as path value to provider executable.
|
||||
|
||||
@echo off
|
||||
|
||||
FOR %%f IN (bin\*) DO (
|
||||
if "%%~xf" == ".exe" (
|
||||
set filename=bin\%%~nf
|
||||
) else (
|
||||
set filename=%%f
|
||||
)
|
||||
)
|
||||
|
||||
for /F "tokens=1,2,3,4 delims=_" %%a in ("%filename%") do (
|
||||
set version=%%b
|
||||
set os=%%c
|
||||
set arch=%%d
|
||||
)
|
||||
|
||||
if "%os%" neq "windows" (
|
||||
echo Unable to find provider executable, is it moved or renamed?
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
|
||||
set provider_path=%appdata%\terraform.d\plugins\basis\decort\decort\%version%\%os%_%arch%\
|
||||
|
||||
if exist %provider_path% (
|
||||
echo Provider directory already exists, checking for decort provider executable..
|
||||
dir /b /s /a "%provider_path%" | findstr .>nul || (
|
||||
copy %filename% %provider_path%\terraform-provider-decort.exe
|
||||
if errorlevel 1 (
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
call :print_success
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
echo DECORT provider version %version% is already installed. Exiting.
|
||||
pause
|
||||
exit /b
|
||||
) else (
|
||||
echo Creating provider directory..
|
||||
mkdir %provider_path%
|
||||
if errorlevel 1 (
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
copy %filename% %provider_path%\terraform-provider-decort.exe
|
||||
if errorlevel 1 (
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
call :print_success
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
|
||||
:print_success
|
||||
echo DECORT provider version %version% has been successfully installed
|
||||
echo:
|
||||
echo Copy this provider configuration to main.tf file:
|
||||
echo terraform {
|
||||
echo required_providers {
|
||||
echo decort = {
|
||||
echo version = "%version%"
|
||||
echo source = "basis/decort/decort"
|
||||
echo }
|
||||
echo }
|
||||
echo }
|
||||
goto:eof
|
||||
68
scripts/install.sh
Executable file
68
scripts/install.sh
Executable file
@@ -0,0 +1,68 @@
|
||||
# Copyright (c) 2019-2023 Digital Energy Cloud Solutions LLC. All Rights Reserved.
|
||||
# Authors:
|
||||
# Tim Tkachev, <tvtkachev@basistech.ru>
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
# Installer uses basis/decort/decort as path value to provider binary.
|
||||
|
||||
set -e
|
||||
|
||||
filename="bin"/*
|
||||
|
||||
version=$(basename $filename | cut -d '_' -f 2)
|
||||
os=$(basename $filename | cut -d '_' -f 3)
|
||||
arch=$(basename $filename | cut -d '_' -f 4)
|
||||
|
||||
plugins_dir=~/.terraform.d/plugins/
|
||||
provider_path=basis/decort/decort/$version/$os\_$arch/
|
||||
|
||||
print_success () {
|
||||
echo "DECORT provider version $version has been successfully installed"
|
||||
echo "\n"
|
||||
echo "Copy this provider configuration to main.tf file"
|
||||
echo "terraform {"
|
||||
echo " required_providers {"
|
||||
echo " decort = {"
|
||||
echo " version = \"$version\""
|
||||
echo " source = \"basis/decort/decort\""
|
||||
echo " }"
|
||||
echo " }"
|
||||
echo "}"
|
||||
}
|
||||
|
||||
install () {
|
||||
if [[ -d $plugins_dir$provider_path ]]
|
||||
then
|
||||
echo "Provider directory already exists, checking for decort provider executable.."
|
||||
if [[ ! "$(ls -A $plugins_dir$provider_path)" ]]; then
|
||||
cp bin/terraform-provider-decort_$version\_$os\_$arch $plugins_dir$provider_path/terraform-provider-decort
|
||||
print_success
|
||||
else
|
||||
echo "DECORT provider version $version is already installed. Exiting.."
|
||||
fi
|
||||
else
|
||||
echo "Creating provider directory.."
|
||||
mkdir -p $plugins_dir/$provider_path
|
||||
cp bin/terraform-provider-decort_$version\_$os\_$arch $plugins_dir$provider_path/terraform-provider-decort
|
||||
print_success
|
||||
fi
|
||||
}
|
||||
|
||||
case "$OSTYPE" in
|
||||
linux*) install ;;
|
||||
darwin*) install ;;
|
||||
bsd*) install ;;
|
||||
msys*) echo "Use bat script to install DECORT provider on Windows machine." ;;
|
||||
cygwin*) echo "Use bat script to install DECORT provider on Windows machine." ;;
|
||||
esac
|
||||
Reference in New Issue
Block a user