#!/bin/bash
function InstallRecommended {
Message "Installing recommended software: roundcube, phpmyadmin, etc, etc...\n"
apt-get install -qq -y `LANGUAGE="en_US" apt-cache depends fastpanel2 |grep Suggests |cut -d' ' -f4|xargs` || InstallationFailed
Success
}