mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
12 lines
235 B
Bash
12 lines
235 B
Bash
if [ $1 -ge 1 ]; then
|
|
# request the server restart
|
|
mkdir -p %{restart_flag_dir}
|
|
echo > %{restart_flag}
|
|
fi
|
|
|
|
if [ $1 = 0 ] ; then
|
|
if [ -x /usr/bin/systemctl ] ; then
|
|
/usr/bin/systemctl daemon-reload > /dev/null 2>&1
|
|
fi
|
|
fi
|
|
|