diff --git a/src/freedombone-app-rocketchat b/src/freedombone-app-rocketchat index cf33e809..ddd2fa14 100755 --- a/src/freedombone-app-rocketchat +++ b/src/freedombone-app-rocketchat @@ -92,27 +92,6 @@ function reconfigure_rocketchat { echo -n '' } -function configure_interactive_rocketchat { - W=(1 $"Option 1" - 2 $"Option 2") - - while true - do - # shellcheck disable=SC2068 - selection=$(dialog --backtitle $"Freedombone Administrator Control Panel" --title $"rocketchat" --menu $"Choose an operation, or ESC for main menu:" 14 70 3 "${W[@]}" 3>&2 2>&1 1>&3) - - if [ ! "$selection" ]; then - break - fi - case $selection in - 1) # call some function for option 1 - ;; - 2) # call some function for option 2 - ;; - esac - done -} - function upgrade_rocketchat { echo -n '' }