mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
0665074a8c
ap/mariadb-11.4.4-x86_64-3.txz: Rebuilt. Moved default options (--skip-networking --disable-ssl) into /etc/default/mariadb. Thanks to y0g1. rc.mysqld: use options from /etc/default/mariadb. Change db installation example from mysql_install_db to mariadb-install-db. Change mysqld to mariadbd in various places. Edit the text that's printed after mariadb-install-db to show how to start at boot time with chmod +x /etc/rc.d/rc.mysqld. kde/kid3-3.9.6-x86_64-1.txz: Upgraded. l/python-wheel-0.45.0-x86_64-1.txz: Upgraded. l/sof-firmware-2024.09.1-noarch-1.txz: Upgraded. x/ibus-1.5.31-x86_64-1.txz: Upgraded.
38 lines
1.2 KiB
Bash
38 lines
1.2 KiB
Bash
config() {
|
|
NEW="$1"
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
|
# If there's no config file by that name, mv it over:
|
|
if [ ! -r $OLD ]; then
|
|
mv $NEW $OLD
|
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
|
# toss the redundant copy
|
|
rm $NEW
|
|
fi
|
|
# Otherwise, we leave the .new copy for the admin to consider...
|
|
}
|
|
|
|
# Keep same perms on rc.mysqld.new:
|
|
if [ -e etc/rc.d/rc.mysqld ]; then
|
|
cp -a etc/rc.d/rc.mysqld etc/rc.d/rc.mysqld.new.incoming
|
|
cat etc/rc.d/rc.mysqld.new > etc/rc.d/rc.mysqld.new.incoming
|
|
touch -r etc/rc.d/rc.mysqld.new etc/rc.d/rc.mysqld.new.incoming
|
|
mv etc/rc.d/rc.mysqld.new.incoming etc/rc.d/rc.mysqld.new
|
|
fi
|
|
|
|
config etc/rc.d/rc.mysqld.new
|
|
config etc/mysqlaccess.conf.new
|
|
config etc/my.cnf.new
|
|
config etc/my.cnf.d/client.cnf.new
|
|
config etc/my.cnf.d/hashicorp_key_management.cnf.new
|
|
config etc/my.cnf.d/mysql-clients.cnf.new
|
|
config etc/my.cnf.d/s3.cnf.new
|
|
config etc/my.cnf.d/server.cnf.new
|
|
config etc/my.cnf.d/spider.cnf.new
|
|
config etc/logrotate.d/mariadb.new
|
|
config etc/default/mariadb.new
|
|
|
|
# This one is only comments, so remove it if it's left behind:
|
|
if [ -r etc/security/user_map.conf.new ]; then
|
|
config etc/security/user_map.conf.new
|
|
fi
|
|
rm -f etc/security/user_map.conf.new
|