Browse Source

added service view menu item

main
deicidus 1 year ago
parent
commit
1cc4e8c4a8
  1. 5
      spells/menu/bitcoin/bitcoin-menu

5
spells/menu/bitcoin/bitcoin-menu

@ -18,12 +18,13 @@ display_menu() {
install_bitcoin_option="Uninstall Bitcoin%uninstall-bitcoin" install_bitcoin_option="Uninstall Bitcoin%uninstall-bitcoin"
if is-service-installed bitcoin; then if is-service-installed bitcoin; then
install_service_option="Uninstall Bitcoin Service%remove-service bitcoin" install_service_option="Uninstall Bitcoin Service%remove-service bitcoin"
service_status_option="View Bitcoin Service Status"
if is-bitcoin-running; then if is-bitcoin-running; then
bitcoin_server_option="Stop Bitcoin Service%sudo systemctl stop bitcoin" bitcoin_server_option="Stop Bitcoin Service%sudo systemctl stop bitcoin"
menu "$title" "$blockchain_info" "$set_config" "$change_directory" "$clear_cache" "$repair_permissions" "$bitcoin_server_option" "$install_service_option" "$install_bitcoin_option" "$exit_option" menu "$title" "$blockchain_info" "$set_config" "$change_directory" "$clear_cache" "$repair_permissions" "$bitcoin_server_option" "$service_status_option" "$install_service_option" "$install_bitcoin_option" "$exit_option"
else else
bitcoin_server_option="Start Bitcoin Service%sudo systemctl start bitcoin" bitcoin_server_option="Start Bitcoin Service%sudo systemctl start bitcoin"
menu "$title" "$set_config" "$change_directory" "$clear_cache" "$repair_permissions" "$bitcoin_server_option" "$install_service_option" "$install_bitcoin_option" "$exit_option" menu "$title" "$set_config" "$change_directory" "$clear_cache" "$repair_permissions" "$bitcoin_server_option" "$install_service_option" "$service_status_option" "$install_bitcoin_option" "$exit_option"
fi fi
else else
script_dir=$(cd -P -- "$(dirname -- "$0")" && pwd -P) script_dir=$(cd -P -- "$(dirname -- "$0")" && pwd -P)

Loading…
Cancel
Save