Revert "Revert "Do explicit stop/start on upgrade, to force xrdp-sesman restart as well.""

This reverts commit 59d72aa513.
This commit is contained in:
Bojan Smojver 2012-05-28 10:32:55 +10:00
parent 54d164fe63
commit c17bb4da02

View File

@ -118,7 +118,10 @@ fi
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
if [ $1 -ge 1 ] ; then
# Package upgrade, not uninstall
/bin/systemctl try-restart xrdp.service >/dev/null 2>&1 || :
if [ "`/bin/systemctl is-active xrdp.service`" = 'active' ]; then
/bin/systemctl stop xrdp.service >/dev/null 2>&1 || :
/bin/systemctl start xrdp.service >/dev/null 2>&1 || :
fi
fi
%triggerun -- xrdp < 0.6.0-1
@ -129,7 +132,10 @@ fi
# Run these because the SysV package being removed won't do them
/sbin/chkconfig --del xrdp >/dev/null 2>&1 || :
/bin/systemctl try-restart xrdp.service >/dev/null 2>&1 || :
if [ "`/bin/systemctl is-active xrdp.service`" = 'active' ]; then
/bin/systemctl stop xrdp.service >/dev/null 2>&1 || :
/bin/systemctl start xrdp.service >/dev/null 2>&1 || :
fi
%files