diff --git a/web_interface.py b/web_interface.py index a8a47458..ebf9577d 100644 --- a/web_interface.py +++ b/web_interface.py @@ -126,6 +126,8 @@ CONFIG_PAGE_TEMPLATE = """
+
+

Action Output:

@@ -352,6 +354,9 @@ def run_action_route(): elif action == 'reboot_system': command_parts = ["sudo", "reboot"] explanation_msg = "Reboots the system." + elif action == 'git_pull': + command_parts = ["git", "pull"] + explanation_msg = "Downloads the latest updates from the repository." else: return jsonify({ "status": "error",