| Server IP : 80.74.154.100 / Your IP : 216.73.217.0 Web Server : Apache System : Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64 User : onlineadmin ( 10487) PHP Version : 8.5.7 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/httpd/vhosts/comeonline.ch/.drush/ |
Upload File : |
<?php
// Send anonymous Drush usage information to statistics logging site.
// Usage statistics contain the Drush command name and the Drush option names, but no arguments or option values.
// Run `drush usend` to send the satistics.
$options['drush_usage_log'] = TRUE;
/* Drush Recipe stuff */
/*$options['shell-aliases']['mcook'] = 'cook --dr-locations="../drecipes/test';
$options['shell-aliases']['dlr'] = 'dlr --dr-locations="../drecipes/test';
*/
/* Notification stuff*/
// $options['notify']['notify-cmd'] = 'libnotify';
// $options['notify']['notify-cmd-audio'] = 'say';
// $options['notify'] = TRUE;
// $command_specific['cache-clear']['notify'] = 5;
// $command_specific['site-install']['notify-audio'] = TRUE;
# Fetcher Services Stuff
/*
$options['fetcher']['info_fetcher.class'] = 'FetcherServices\InfoFetcher\FetcherServices';
$options['fetcher']['info_fetcher.config'] = array('host' => 'http://webtools.meos.ch');
*/
// Check if notify command exists.
// http://stackoverflow.com/questions/592620/check-if-a-program-exists-from-a-bash-script
if (`command -v notify-send >/dev/null 2>&1`) {
$options['notify-send'] = 'libnotify';
// Notify if clearing the cache takes longer than 5 seconds.
$command_specific['cache-clear']['notify'] = 5;
// Notify user via Notification Center (OSX) or libnotify (Linux) when command
// takes more than 30 seconds. See global options for more configuration.
$options['notify'] = 30;
}
// Patch file is relevant to the Drupal root directory. This example would refer
// a patch file that is located one directory up from the Drupal root. Define
// this option to save typing when running Drush commands for your project.
# $options['patch-file'] = 'sites/default/patches.make';
/**
* List of tables whose *data* is skipped by the 'sql-dump' and 'sql-sync'
* commands when the "--structure-tables-key=common" option is provided.
* You may add specific tables to the existing array or add a new element.
*/
$options['structure-tables']['common'] = array(
'cache',
'cache_*',
'history',
'search_*',
'sessions',
'watchdog',
);
// Use the list of cache tables above.
$options['structure-tables-key'] = 'common';
// Set a predetermined username and password when using site-install.
// Removed possibly for later. 'locale' => 'de-CH',
// or 'locale' => 'de',
$command_specific['site-install'] = array(
'account-name' => 'Drupal Admin',
'account-pass' => '69urNSOTiyD_ir8rMZ-x',
'account-mail' => 'frederick.henderson@meos.ch',
'site-name'=> 'A New MEOS Website',
'site-mail'=> 'webmaster@meos.ch',
'clean-url' => 1,
'install_configure_form.date_default_timezone' => 'Europe/Zurich',
'install_configure_form.site_default_country' => 'CH',
// Disable email sending.
'install_configure_form.update_status_module' => 'array(FALSE,FALSE)',
);
// Always run drush deploy-deploy with the --debug option
$command_specific['deploy-deploy'] = array(
'debug' => 'TRUE',
);
// Always run drush deploy-symlink with the --debug option
$command_specific['deploy-symlink'] = array(
'debug' => 'TRUE',
);
// Run drush deploy-rollback with the --debug option until we figure out why it is not working. - FJH 18.03.2017
$command_specific['deploy-rollback'] = array(
'debug' => 'TRUE',
);
// Run drush deploy-cleanup with the --debug option until we figure out why it some times hangs. - FJH 18.03.2017
$command_specific['deploy-cleanup'] = array(
'debug' => 'TRUE',
);
// Google Custom Search API Key for the search in the xkcd command
$command_specific['xkcd'] = array(
'google-custom-search-api-key' => 'AIzaSyAoIV6R0HSqra9EfzNkIpG1jYfqA_sc2oI',
);
$options['shell-aliases']['locked-modules'] = '! find . -name ".drush-lock-update"| sed \'s#/[^/]*$##\' | sed \'s!.*/!!\' ';
$options['shell-aliases']['meoschsyncdbtotest'] = '! drush --yes sql-sync @meosch.live @meosch.test --create-db && drush --yes @meosch.test sql-dump';
// && drush @meosch.test user-password "Drupal Admin" --password='; - Removed sanitation in alias file so no need to set password. - FJH
//$options['shell-aliases']['meoschsyncfilestotest'] = '! drush core-rsync ';
$options['shell-aliases']['meoschsyncdbtodev'] = '! drush --yes sql-sync @meosch.test @meosch.dev && drush @meosch.dev user-password "Drupal Admin" --password=';
//$options['shell-aliases']['l2mchsplashsyncdbtotest'] = '! drush --yes sql-sync @l2mchsplash.live @l2mchsplash.test --create-db && drush --yes @l2mchsplash.test sql-dump && drush @l2mchsplash.test user-password "Drupal Admin" --password=';
//$options['shell-aliases']['meoschsyncfilestotest'] = '! drush core-rsync ';
$options['shell-aliases']['l2mchsplashsyncdbtodev'] = '! drush --yes sql-sync @l2mchsplash.live @self && drush @l2mchsplash.dev user-password "Drupal Admin" --password=';