forked from hyperledger/indy-node
-
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.
INDY-830: Removed Evernym and Sovrin brands (hyperledger#351)
* INDY-830: Removed Evernym and Sovrin brands - Removed Evernym and Sovrin brands from code and documentation. TODO: - Remove Evernym and Sovrin brands from code related to node upgrade (where necessary). - Provide migration scripts for node and client. * Merge branch 'master' of https://github.com/spivachuk/sovrin-node into rebranding # Conflicts: # docs/Indy_Running_Locally.md * Updated indy-plenum-dev and indy-anoncreds-dev dependencies. * - Removed Evernym and Sovrin brands from code related to node upgrade. - Wrapped the user into a variable in ubuntu.dockerfile. - Corrected sovrin-environments URL in getting-started.md. - Removed an outdated reference to the build status from README.md. * Corrected the URL of the APT repository containing python3-charm-crypto and the key for this repository in ubuntu.dockerfile. * Rolled back an accidental method renaming. * INDY-830: Implemented node migration for rebranding sovrin to indy * INDY-830: Corrected migration script for rebranding sovrin to indy * INDY-830: Corrected versions in migration script name * INDY-830: Fixed a bug with use of "~" for referencing indy user home directory in a script being executed on behalf of root user * INDY-830: Fixed a bug with use of elements of os.listdir result as absolute paths * INDY-830: Updated indy-anoncreds dependency * - Added missed scripts to setup.py. - Made corresponding corrections in postinst_node. * - Added dependency from "at" deb package to "indy-node" deb package creation command. - Corrected restart_sovrin_node script (being used for rebranding upgrade). - Removed indy_node_control.service file from sources (now it is generated on the fly). * Corrected restart_sovrin_node script (being used for rebranding upgrade). * Corrected restart_sovrin_node script (being used for rebranding upgrade) once again. * Added starting atd service to restart_sovrin_node script (being used for rebranding upgrade). * INDY-830: Added logging to file for node control tool - Added logging to file in start_node_control_tool.py. - Made start_node_control_tool logic executable only if the script is run as an entry point. * Corrected complete_rebranding_upgrade script. * - Removed logging to file for node control tool (its log is accessible in systemd journal). - Renamed the script "start_node_control_tool.py" to "start_node_control_tool". * Removed hashbang from node_control_tool.py. * Perform renaming to fix diff. * Perform renaming to fix diff once again. * INDY-830: Wallet migration for rebranding - Implemented wallet migration for rebranding. - Extracted wallet raw updaters from Wallet class. * INDY-830: Removed redundant action from WalletRawUpdaterToVersion2 * Fixed a bug in WalletRawUpdaterToVersion1 made when extracting updaters from Wallet class. * INDY-830: Made wallet migrations more resilient * INDY-830: Test restoring wallet before rebranding - Added a test verifying restoration of a wallet with GST stuff before rebranding. - Renamed the module with the test verifying restoration of a wallet with GST stuff before renaming Link to Connection. - Updated Wallet class version in the test wallet file "tmp_wallet_restore_issue". - Removed the useless file "test.log". * INDY-830: Made a minor correction in WalletRawUpdaterToVersion2 * Made corrections after merge with changes from master. * Corrected the description of indy-node-control systemd service. * Made corrections after merge with changes from master. * Updated versions in the last migration script for the node. * Updated indy-plenum-dev dependency.
- Loading branch information
1 parent
30087f4
commit f16bead
Showing
363 changed files
with
1,756 additions
and
1,606 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
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
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
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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
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 |
---|---|---|
|
@@ -25,6 +25,7 @@ fpm --input-type "python" \ | |
--python-bin "/usr/bin/python3" \ | ||
--exclude "*.pyc" \ | ||
--exclude "*.pyo" \ | ||
--depends at \ | ||
--no-python-fix-dependencies \ | ||
--maintainer "Hyperledger <[email protected]>" \ | ||
--before-install "preinst_node" \ | ||
|
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
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,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
if ! id -u sovrin > /dev/null 2>&1; then | ||
useradd -r -m -s /bin/bash -U sovrin | ||
if ! id -u indy > /dev/null 2>&1; then | ||
useradd -r -m -s /bin/bash -U indy | ||
fi |
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
Oops, something went wrong.