This file contains hidden or 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
#!/bin/bash | |
RED='\033[1;31m' | |
GRN='\033[1;32m' | |
YEL='\033[1;33m' | |
BLU='\033[1;34m' | |
WHT='\033[1;37m' | |
MGT='\033[1;95m' | |
CYA='\033[1;96m' | |
END='\033[0m' |
This file contains hidden or 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
#!/usr/bin/env bash | |
set -e | |
echo "Starting connection..." | |
USERNAME=<USERNAME> | |
PASSWORD=<PASSWORD> | |
VPN_HOST=<VPN_HOST> | |
TOTP_SECRET="sha1:base32:<SECRET>" |
This file contains hidden or 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
#!/usr/bin/env bash | |
set -e | |
# based on the official API: https://cloud.yandex.ru/docs/tracker/concepts/issues/create-issue | |
# Firstly I had to export all the issues from Github Project using this wonderful tool: https://github.com/fiedl/github-project-to-csv | |
# Then I cleaned up rhe resulting csv file a bit and used https://csvjson.com/csv2json to convert csv to json. | |
# Once I had json with all the issues exported I iterate over it creating issiues in Tracker. | |
token="IAM_TOKEN" |
OlderNewer