From c0bd12e0fe384bcd8d62ef4c2148fcf0fc89b650 Mon Sep 17 00:00:00 2001 From: paukstelis Date: Sun, 6 Nov 2022 08:30:11 -0500 Subject: [PATCH] menu fixes --- octoprint_deploy.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/octoprint_deploy.sh b/octoprint_deploy.sh index 40108fd..84c21c0 100755 --- a/octoprint_deploy.sh +++ b/octoprint_deploy.sh @@ -986,7 +986,7 @@ remove_everything() { } utility_menu() { PS3='Select an option: ' - options=("Instance Status" "USB Port Testing" "Sync Users" "Quit") + options=("Instance Status" "USB Port Testing" "Sync Users" "Share Uploads" "Quit") select opt in "${options[@]}" do case $opt in @@ -1069,6 +1069,8 @@ restart_all() { } sync_users() { + echo + echo "This will sync all the users from one instance to all the other instances." PS3='Select instance that contains current user list: ' readarray -t options < <(cat /etc/octoprint_instances | sed -n -e 's/^instance:\([[:graph:]]*\) .*/\1/p') options+=("Quit")