Skip to content
Snippets Groups Projects
Commit 63914893 authored by Bob Mottram's avatar Bob Mottram
Browse files

Rocketchat has no admin settings

parent 465a2fb5
No related branches found
No related tags found
No related merge requests found
......@@ -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 ''
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment