diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2017-04-05 15:58:24 +0300 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2017-04-05 22:27:16 +0300 |
commit | 75b8fe4f18c6e15196acd6f45b38bdce56ced919 (patch) | |
tree | 33b59814fe10f4bfefefd54707ce44ba4e2973a9 /debian/mariadb-server-10.3.mysql-server.logrotate | |
parent | 3d004de31d8d0c630a002e4345a6e839a7ecd8c1 (diff) | |
download | mariadb-git-75b8fe4f18c6e15196acd6f45b38bdce56ced919.tar.gz |
Update debian packaging to work in 10.3
* Rename all files to use 10.3 in the filename
* Adjust rules to delete extra lines from control file
* Adjust control file to have correct Replaces/Breaks list for each
package
* Add libcurl3-dev as build dependency for mariadb server in debian
Diffstat (limited to 'debian/mariadb-server-10.3.mysql-server.logrotate')
-rw-r--r-- | debian/mariadb-server-10.3.mysql-server.logrotate | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/debian/mariadb-server-10.3.mysql-server.logrotate b/debian/mariadb-server-10.3.mysql-server.logrotate new file mode 100644 index 00000000000..4111a276dc3 --- /dev/null +++ b/debian/mariadb-server-10.3.mysql-server.logrotate @@ -0,0 +1,20 @@ +# - I put everything in one block and added sharedscripts, so that mysql gets +# flush-logs'd only once. +# Else the binary logs would automatically increase by n times every day. +# - The error log is obsolete, messages go to syslog now. +/var/log/mysql/mysql.log /var/log/mysql/mysql-slow.log /var/log/mysql/mariadb-slow.log /var/log/mysql/error.log { + daily + rotate 7 + missingok + create 640 mysql adm + compress + sharedscripts + postrotate + test -x /usr/bin/mysqladmin || exit 0 + if [ -f `my_print_defaults --mysqld | grep -oP "pid-file=\K[^$]+"` ]; then + # If this fails, check debian.conf! + mysqladmin --defaults-file=/etc/mysql/debian.cnf --local flush-error-log \ + flush-engine-log flush-general-log flush-slow-log + fi + endscript +} |