You are here

function _hosting_drush_path_requirements in Hosting 5

File

web_server/hosting_web_server.module, line 49
Web server node type is defined here.

Code

function _hosting_drush_path_requirements() {
  $help['title'] = t('Full path to the Drush installation on this server.');
  $help['summary'] = t('<a href="http://drupal.org/project/drush">Drush</a> is a command line script that is used to
                       interact with Drupal sites through the unix shell.<br />
                       To be able to use Aegir, you need to download Drush, and place it somewhere on your server
                       that is accessible by the script user (eg: <code>/home/!script_user/drush/drush.php</code>).<br />
                       Once Drush is installed, you are required to download <a href="http://drupal.org/project/provision">Provision</a>
                       and place it in the .drush folder of the script user\'s home directory.
                       (eg: <code>/home/!script_user/.drush/provision</code>).<br />', array(
    '!script_user' => HOSTING_DEFAULT_SCRIPT_USER,
  ));
  return $help;
}