Ich habe eine Drush-Konfigurationsdatei ~ / .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')
);
Und ich habe eine Bash-Skriptdatei:
/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
Aber wenn ich es ausführe, hat die Sicherungsdatei immer noch Daten in Cache-Tabellen. Was mache ich falsch?
Und die zweite Frage ist: Wenn ich dies in crontab ablege, muss ich die Konfigurationsdatei woanders ablegen?
Ich benutze Drush Version 8.
drushrc.php
nicht läuft. Versuchen Sie einen var_dump von$options['structure-tables']
in thedrushrc.php
just, um zu bestätigen, dass es ausgeführt wird.