summaryrefslogtreecommitdiff
path: root/support-files/rpm/server-postun.sh
blob: 21468e39e1872c2d7ad4151510b7e6d757ac8c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if [ $1 -ge 1 ]; then
  # 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

if [ $1 = 0 ] ; then
  if [ -x /usr/bin/systemctl ] ; then
    /usr/bin/systemctl daemon-reload > /dev/null 2>&1
  fi
fi