#!/bin/bash

function InstallRecommended {
    Message "Installing recommended software: roundcube, phpmyadmin, etc, etc...\n"
    export OLD_LANG="$LANG"
    export LANG="en_US.UTF-8"
    apt-get install -qq -y `apt-cache depends fastpanel2 |grep Suggests |cut -d' ' -f4|xargs` || InstallationFailed
    export LANG="$OLD_LANG"

    Success
}
