Fix paths in helper scripts
This commit is contained in:
parent
5b0ed2d410
commit
41a1c5712b
@ -5,7 +5,7 @@
|
|||||||
# positive result when starting and mysqld_safe could remove
|
# positive result when starting and mysqld_safe could remove
|
||||||
# a socket file, which is actually being used by a different daemon.
|
# a socket file, which is actually being used by a different daemon.
|
||||||
|
|
||||||
source ./mariadb-scripts-common
|
source "`dirname ${BASH_SOURCE[0]}`/mariadb-scripts-common"
|
||||||
|
|
||||||
if fuser "$socketfile" &>/dev/null ; then
|
if fuser "$socketfile" &>/dev/null ; then
|
||||||
echo "Socket file $socketfile exists." >&2
|
echo "Socket file $socketfile exists." >&2
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# This script creates the mysql data directory during first service start.
|
# This script creates the mysql data directory during first service start.
|
||||||
# In subsequent starts, it does nothing much.
|
# In subsequent starts, it does nothing much.
|
||||||
|
|
||||||
source ./mariadb-scripts-common
|
source "`dirname ${BASH_SOURCE[0]}`/mariadb-scripts-common"
|
||||||
|
|
||||||
# Absorb configuration settings from the specified systemd service file,
|
# Absorb configuration settings from the specified systemd service file,
|
||||||
# or the default "mariadb" service if not specified
|
# or the default "mariadb" service if not specified
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
source ./mariadb-scripts-common
|
source "`dirname ${BASH_SOURCE[0]}`/mariadb-scripts-common"
|
||||||
|
|
||||||
# This script waits for mysqld to be ready to accept connections
|
# This script waits for mysqld to be ready to accept connections
|
||||||
# (which can be many seconds or even minutes after launch, if there's
|
# (which can be many seconds or even minutes after launch, if there's
|
||||||
|
@ -809,6 +809,7 @@ fi
|
|||||||
* Wed Mar 12 2014 Honza Horak <hhorak@redhat.com> - 1:5.5.36-2
|
* Wed Mar 12 2014 Honza Horak <hhorak@redhat.com> - 1:5.5.36-2
|
||||||
- Server crashes on SQL select containing more group by and left join statements using innodb tables
|
- Server crashes on SQL select containing more group by and left join statements using innodb tables
|
||||||
Resolves: #1065676
|
Resolves: #1065676
|
||||||
|
- Fix paths in helper scripts
|
||||||
|
|
||||||
* Thu Mar 06 2014 Honza Horak <hhorak@redhat.com> - 1:5.5.36-1
|
* Thu Mar 06 2014 Honza Horak <hhorak@redhat.com> - 1:5.5.36-1
|
||||||
- Rebase to 5.5.36
|
- Rebase to 5.5.36
|
||||||
|
Loading…
Reference in New Issue
Block a user