Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release fixed installer and new config to testnet #3684

Merged
merged 7 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@
"enabled": true,
"package": "./auto-updater/implementation/ot-auto-updater.js",
"config": {
"branch": "v8/release/testnet"
"branch": "v6/release/testnet"
}
}
}
Expand Down
24 changes: 18 additions & 6 deletions installer/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ install_aliases() {
install_directory() {
ARCHIVE_REPOSITORY_URL="github.com/OriginTrail/ot-node/archive"
BRANCH="v6/release/testnet"
BRANCH_DIR="/root/ot-node-8-release-testnet"
BRANCH_DIR="/root/ot-node-6-release-testnet"

perform_step wget https://$ARCHIVE_REPOSITORY_URL/$BRANCH.zip "Downloading node files"
perform_step unzip *.zip "Unzipping node files"
Expand Down Expand Up @@ -386,11 +386,23 @@ install_node() {
"config": {
"repositories": {
"dkg": {
"url": $tripleStoreUrl,
"name": "dkg",
"username": "admin",
"password": ""
}
"url": $tripleStoreUrl,
"name": "dkg",
"username": "admin",
"password": ""
},
"privateCurrent": {
"url": $tripleStoreUrl,
"name": "private-current",
"username": "admin",
"password": ""
},
"publicCurrent": {
"url": $tripleStoreUrl,
"name": "public-current",
"username": "admin",
"password": ""
}
}
}
} + .' $CONFIG_DIR/.origintrail_noderc > $CONFIG_DIR/origintrail_noderc_tmp) "Adding triple store config to node config file"
Expand Down
Loading