From 27c37a5b1ba2dc883cfc7ae47cdb2f2b06b444a9 Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Thu, 17 Mar 2011 15:55:13 +0100 Subject: BDB is not compiled anymore on Debian systems It would make the daemon fail to load if put in the config. --- files/config/my.cnf.Debian | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/config/my.cnf.Debian b/files/config/my.cnf.Debian index 1935cfb..d2a5bc0 100644 --- a/files/config/my.cnf.Debian +++ b/files/config/my.cnf.Debian @@ -90,7 +90,7 @@ max_binlog_size = 100M # * BerkeleyDB # # Using BerkeleyDB is now discouraged as its support will cease in 5.1.12. -skip-bdb +#skip-bdb # # * InnoDB # -- cgit v1.2.3 From fb1ec5b77792f46d9ad4de7efcf1d0eb7a458282 Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Fri, 18 Mar 2011 17:51:34 +0100 Subject: --all is deprecated --- manifests/server/cron/backup.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/server/cron/backup.pp b/manifests/server/cron/backup.pp index c1e84d1..9fbfaa0 100644 --- a/manifests/server/cron/backup.pp +++ b/manifests/server/cron/backup.pp @@ -18,7 +18,7 @@ class mysql::server::cron::backup { } cron { 'mysql_backup_cron': - command => "/usr/bin/mysqldump --default-character-set=utf8 --all-databases --all --flush-logs --lock-tables --single-transaction | gzip > ${real_mysql_backup_dir}/mysqldump.sql.gz && chmod 600 ${real_mysql_backup_dir}/mysqldump.sql.gz", + command => "/usr/bin/mysqldump --default-character-set=utf8 --all-databases --create-options --flush-logs --lock-tables --single-transaction | gzip > ${real_mysql_backup_dir}/mysqldump.sql.gz && chmod 600 ${real_mysql_backup_dir}/mysqldump.sql.gz", user => 'root', minute => 0, hour => 1, -- cgit v1.2.3