File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
393394change_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
Original file line number Diff line number Diff line change 1111from flask import render_template
1212from flask_login import login_required
1313
14- @app .route ('/netowrk ' , methods = ['GET' ])
14+ @app .route ('/network ' , methods = ['GET' ])
1515@login_required
1616def dashboard_network ():
1717 groups = DashboardNetworkSettings .query .all () # Fetch all dashboard groups
You can’t perform that action at this time.
0 commit comments