Ho un file di configurazione di Drush ~ / .drush / drushrc.php:
if (!isset($options['structure-tables']['common'])) {
$options['structure-tables']['common'] = array(
'cache', 'cache_*', 'history', 'search_*', 'sessions', 'watchdog'
);
}
$options['structure-tables']['common'] = array_merge($options['structure-tables']['common'],
array('ctools_css_cache', 'ctools_object_cache', 'logz', 'views_object_cache')
);
E ho un file di script bash:
/usr/bin/drush sql-dump --root="/home/username/domains/sitename/www" --skip-tables-key="common" --gzip --result-file=/home/username/backup/$year/$month/dbname_$date_now_time.sql
Ma quando lo eseguo, il file di backup contiene ancora dati nelle tabelle della cache. Che cosa sto facendo di sbagliato?
E la seconda domanda è: se inserisco questo in crontab, devo inserire il file di configurazione da qualche altra parte?
Uso Drush versione 8.
drushrc.php
non viene eseguito. Prova a var_dump di$options['structure-tables']
indrushrc.php
solo per confermare che è in esecuzione.