Skip to content

Commit 84577d5

Browse files
chore: setup script improved
1 parent eb7872b commit 84577d5

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ A Docker image has not been created for this project because it requires access
109109
- Customizable dashboards
110110
- Plugin support to make SystemGuard even more powerful.
111111
- make server logs
112+
- Check Disk read/write speed
113+
- Check Firewall status
112114

113115
## Acknowledgments
114116

setup.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ install() {
246246
# Install the executable
247247
install_executable
248248
log "SystemGuard version $VERSION installed successfully!"
249+
log "Server may take a few minutes to start, if you face any try to restart the server."
249250
}
250251

251252
# Uninstall function
@@ -392,7 +393,6 @@ change_ownership() {
392393
# Call the change_ownership function
393394
change_ownership "$EXTRACT_DIR"
394395

395-
echo "SystemGuard Installer script completed, Server may take a few minutes to start, if you face any try to restart the server."
396-
echo "For any issues or feedback, please report at: $ISSUE_URL"
397-
echo "For more information, check the log file: $LOG_FILE"
396+
log "For any issues or feedback, please report at: $ISSUE_URL"
397+
log "For more information, check the log file: $LOG_FILE"
398398
# End of script

src/routes/network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from flask import render_template
1212
from flask_login import login_required
1313

14-
@app.route('/netowrk', methods=['GET'])
14+
@app.route('/network', methods=['GET'])
1515
@login_required
1616
def dashboard_network():
1717
groups = DashboardNetworkSettings.query.all() # Fetch all dashboard groups

0 commit comments

Comments
 (0)