Rocketchat has no admin settings

This commit is contained in:
Bob Mottram 2018-05-16 16:14:28 +01:00
parent 465a2fb5f0
commit 63914893fe
1 changed files with 0 additions and 21 deletions

View File

@ -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 ''
}