-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: bishal7679 <bishalhnj127@gmail.com>
- Loading branch information
1 parent
255a991
commit 8f93c5d
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,69 @@ | ||
#!/bin/bash | ||
Red='\033[0;31m' | ||
Green='\033[0;32m' | ||
Blue='\033[0;34m' | ||
Yellow='\033[0;33m' | ||
NoColor='\033[0m' | ||
|
||
|
||
# get the release version | ||
echo -e "${Blue}Available Releases${NoColor}" | ||
|
||
response=$(curl --silent "https://api.github.com/repos/bishal7679/ksapify/releases") | ||
|
||
# Loop through the releases and extract the tag names | ||
for release in $(echo "${response}" | jq -r '.[].tag_name'); do | ||
echo -e "${Blue}${release}${NoColor}" | ||
done | ||
|
||
|
||
|
||
echo -e "${Yellow}Enter the ksapify version to install (enter the string after 'v')${NoColor}" | ||
read RELEASE_VERSION | ||
|
||
echo -e "${Yellow}Enter the OS and corresponding Architecture${NoColor}" | ||
echo -e "${Blue}Enter [1] for Linux and [0] for MacOS${NoColor}" | ||
read OS | ||
|
||
echo -e "${Blue}Enter [1] for amd64 or x86_64 and [0] for arm64${NoColor}" | ||
read ARCH | ||
|
||
|
||
if [[ $ARCH -eq 1 ]]; then | ||
ARCH="amd64" | ||
elif [[ $ARCH -eq 0 ]]; then | ||
ARCH="arm64" | ||
else | ||
echo -e "${Red}Invalid architecture${NoColor}" | ||
exit 1 | ||
fi | ||
|
||
if [[ $OS -eq 1 ]]; then | ||
OS="linux" | ||
elif [[ $OS -eq 0 ]]; then | ||
OS="darwin" | ||
else | ||
echo -e "${Red}Invalid OS${NoColor}" | ||
exit 1 | ||
fi | ||
|
||
|
||
cd /tmp | ||
sudo wget -q https://github.com/bishal7679/ksapify/releases/download/v${RELEASE_VERSION}/ksapify_${RELEASE_VERSION}_checksums.txt | ||
sudo wget https://github.com/bishal7679/ksapify/releases/download/v${RELEASE_VERSION}/ksapify_${RELEASE_VERSION}_${OS}_${ARCH}.tar.gz | ||
|
||
file=$(sha256sum ksapify_${RELEASE_VERSION}_${OS}_${ARCH}.tar.gz | awk '{print $1}') | ||
checksum=$(cat ksapify_${RELEASE_VERSION}_checksums.txt | grep ksctl_${RELEASE_VERSION}_${OS}_${ARCH}.tar.gz | awk '{print $1}') | ||
|
||
if [[ $file != $checksum ]]; then | ||
echo -e "${Red}Checksum didn't matched!${NoColor}" | ||
exit 1 | ||
else | ||
echo -e "${Green}CheckSum are verified${NoColor}" | ||
fi | ||
|
||
sudo tar -xvf ksapify_${RELEASE_VERSION}_${OS}_${ARCH}.tar.gz | ||
|
||
sudo mv -v ksapify /usr/local/bin/ksapify | ||
|
||
echo -e "${Green}INSTALLATION COMPLETED${NoColor}" |