Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MrNaif2018 committed Sep 13, 2023
1 parent 738016e commit e70398c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions contrib/upgrades/upgrade-to-0800.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
. "${SCRIPT_DIR}/../../helpers.sh"
load_env

try rm /etc/profile.d/bitcartcc-env$SCRIPTS_POSTFIX.sh
try rm $HOME/bitcartcc-env$SCRIPTS_POSTFIX.sh
try mv /etc/profile.d/bitcartcc-env$SCRIPTS_POSTFIX.sh /etc/profile.d/bitcart-env$SCRIPTS_POSTFIX.sh
try mv $HOME/bitcartcc-env$SCRIPTS_POSTFIX.sh $HOME/bitcart-env$SCRIPTS_POSTFIX.sh
try systemctl disable bitcartcc$SCRIPTS_POSTFIX.service
try systemctl stop bitcartcc$SCRIPTS_POSTFIX.service
try rm /etc/systemd/system/bitcartcc$SCRIPTS_POSTFIX.service
try mv /etc/systemd/system/bitcartcc$SCRIPTS_POSTFIX.service /etc/systemd/system/bitcart$SCRIPTS_POSTFIX.service
try systemctl daemon-reload
try systemctl enable bitcart$SCRIPTS_POSTFIX.service
try systemctl start bitcart$SCRIPTS_POSTFIX.service

0 comments on commit e70398c

Please sign in to comment.