1 |
jpp |
1.1 |
diff -Nur --no-dereference smeserver-mysql-2.7.0.old/rootscl/etc/logrotate.d/mariadb_VER_ smeserver-mysql-2.7.0/rootscl/etc/logrotate.d/mariadb_VER_ |
2 |
|
|
--- smeserver-mysql-2.7.0.old/rootscl/etc/logrotate.d/mariadb_VER_ 2022-03-11 21:34:28.000000000 -0500 |
3 |
|
|
+++ smeserver-mysql-2.7.0/rootscl/etc/logrotate.d/mariadb_VER_ 2022-03-13 01:33:07.924000000 -0500 |
4 |
|
|
@@ -7,10 +7,10 @@ |
5 |
|
|
compress |
6 |
|
|
postrotate |
7 |
|
|
# just if mysqld is really running |
8 |
|
|
- if test -x /opt/rh/rh-mariadb!!!VER!!!/root/usr/bin/mysqladmin && \ |
9 |
|
|
- /usr/bin/scl enable rh-mariadb!!!VER!!! -- /opt/rh/rh-mariadb!!!VER!!!/root/usr/bin/mysqladmin ping &>/dev/null |
10 |
|
|
+ if test -x /opt/rh/rh-mariadb!!!VER!!!/root/usr/bin/mysqladmin && \ |
11 |
|
|
+ /usr/bin/scl enable rh-mariadb!!!VER!!! -- /opt/rh/rh-mariadb!!!VER!!!/root/usr/bin/mysqladmin --socket=!!!SOCKET!!! ping &>/dev/null |
12 |
|
|
then |
13 |
|
|
- /usr/bin/scl enable rh-mariadb!!!VER!!! -- /opt/rh/rh-mariadb!!!VER!!!/root/usr/bin/mysqladmin --local flush-error-log \ |
14 |
|
|
+ /usr/bin/scl enable rh-mariadb!!!VER!!! -- /opt/rh/rh-mariadb!!!VER!!!/root/usr/bin/mysqladmin --socket=!!!SOCKET!!! --local flush-error-log \ |
15 |
|
|
flush-engine-log flush-general-log flush-slow-log |
16 |
|
|
fi |
17 |
|
|
endscript |
18 |
|
|
diff -Nur --no-dereference smeserver-mysql-2.7.0.old/rootscl/sbin/e-smith/systemd/mariadb_VER_-initialize smeserver-mysql-2.7.0/rootscl/sbin/e-smith/systemd/mariadb_VER_-initialize |
19 |
|
|
--- smeserver-mysql-2.7.0.old/rootscl/sbin/e-smith/systemd/mariadb_VER_-initialize 2022-03-12 00:27:43.000000000 -0500 |
20 |
|
|
+++ smeserver-mysql-2.7.0/rootscl/sbin/e-smith/systemd/mariadb_VER_-initialize 2022-03-13 01:24:53.334000000 -0500 |
21 |
|
|
@@ -34,8 +34,11 @@ |
22 |
|
|
fi |
23 |
|
|
exit $ret |
24 |
|
|
fi |
25 |
|
|
- # set root password |
26 |
|
|
- /opt/rh/rh-mariadb!!!VER!!!/root/usr/libexec/mysqld --bootstrap --datadir="$datadir" --user="mysql" < /var/lib/mysql/set.password |
27 |
|
|
+ # set root password , 104 and above have a different syntax and allow root passwordless access |
28 |
|
|
+ if [ !!!VER!!! -le 103 ] |
29 |
|
|
+ then |
30 |
|
|
+ /opt/rh/rh-mariadb!!!VER!!!/root/usr/libexec/mysqld --bootstrap --datadir="$datadir" --user="mysql" < /var/lib/mysql/set.password |
31 |
|
|
+ fi |
32 |
|
|
# upgrade does not need to be run on a fresh datadir |
33 |
|
|
#echo "5.7.24" >"$datadir/mysql_upgrade_info" |
34 |
|
|
# In case we're running as root, make sure files are owned properly |
35 |
|
|
@@ -46,7 +49,10 @@ |
36 |
|
|
/sbin/e-smith/expand-template /etc/e-smith/sql/init!!!VER!!!/00_restore_dumped_dbs |
37 |
|
|
fi |
38 |
|
|
else |
39 |
|
|
- # else we set root password anyway ! just to be sure ! |
40 |
|
|
- /opt/rh/rh-mariadb!!!VER!!!/root/usr/libexec/mysqld --bootstrap --datadir="$datadir" --user="mysql" < /var/lib/mysql/set.password |
41 |
|
|
- |
42 |
|
|
+ # else we set root password anyway ! just to be sure ! 104 and above have a different syntax and allow root passwordless access |
43 |
|
|
+ if [ !!!VER!!! -le 103 ] |
44 |
|
|
+ then |
45 |
|
|
+ /opt/rh/rh-mariadb!!!VER!!!/root/usr/libexec/mysqld --bootstrap --datadir="$datadir" --user="mysql" < /var/lib/mysql/set.password |
46 |
|
|
+ fi |
47 |
|
|
+ exit 0 |
48 |
|
|
fi |