summaryrefslogtreecommitdiff
path: root/support-files/rpm/server-posttrans.sh
blob: 0845a68c7916f7473030bcf5de28d9b89026a9ff (plain)
1
2
3
4
5
6
7
8
9
10
if [ -r %{restart_flag} ] ; then
  rm %{restart_flag}
  # only restart the server if it was alredy running
  if [ -x /usr/bin/systemctl ] ; then
    /usr/bin/systemctl daemon-reload > /dev/null 2>&1
    /usr/bin/systemctl try-restart mariadb.service > /dev/null 2>&1
  elif %{_sysconfdir}/init.d/mysql status > /dev/null 2>&1; then
    %{_sysconfdir}/init.d/mysql restart
  fi
fi