Skip to content

Commit

Permalink
Small changes to sh and service
Browse files Browse the repository at this point in the history
- Remove unused startup target from service
- Update comments being echod
- Force rusk-wallet config override
  • Loading branch information
HDauven committed Feb 28, 2024
1 parent 2861512 commit 6717cf5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions itn-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ tar xf /opt/dusk/installer/wallet.tar.gz --strip-components 1 --directory /opt/d
mv /opt/dusk/installer/wallet/rusk-wallet /opt/dusk/bin/
chmod +x /opt/dusk/bin/rusk-wallet
ln -sf /opt/dusk/bin/rusk-wallet /usr/bin/rusk-wallet
mv /opt/dusk/conf/wallet.toml /root/.dusk/rusk-wallet/config.toml
mv -f /opt/dusk/conf/wallet.toml /root/.dusk/rusk-wallet/config.toml

echo "Downloading verifier keys"
curl -so /opt/dusk/installer/rusk-vd-keys.zip -L "$VERIFIER_KEYS_URL"
Expand Down Expand Up @@ -103,17 +103,17 @@ echo "rusk-wallet export -d /opt/dusk/conf -n consensus.keys"
echo
echo "2. Set DUSK_CONSENSUS_KEYS_PASS (use /opt/dusk/bin/setup_consensus_pwd.sh)"
echo "Run the following command:"
echo "./opt/dusk/bin/setup_consensus_pwd.sh"
echo "sh /opt/dusk/bin/setup_consensus_pwd.sh"
echo
echo "-----"
echo "To launch the node: "
echo "service rusk start"
echo
echo "To run the Rusk wallet:"
echo "rusk-wallet -n local"
echo "rusk-wallet"
echo
echo "To check the logs"
echo "tail -F /var/log/rusk.{log,err}"
echo "tail -F /var/log/rusk.log"

rm -f /opt/dusk/installer/rusk.tar.gz
rm -f /opt/dusk/installer/installer.tar.gz
Expand Down
1 change: 0 additions & 1 deletion services/rusk.service
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[Unit]
Description=DUSK Rusk
After=network.target
After=create_dusk_info.service

[Service]
Type=simple
Expand Down

0 comments on commit 6717cf5

Please sign in to comment.