support systemctl
This commit is contained in:
parent
0ccb20a343
commit
916e5474c4
|
@ -98,7 +98,11 @@ fi
|
||||||
/etc/init.d/apache2 reload
|
/etc/init.d/apache2 reload
|
||||||
%endif
|
%endif
|
||||||
%if %is_fedora
|
%if %is_fedora
|
||||||
/etc/init.d/httpd reload
|
if [ -e /etc/init.d/httpd ]; then
|
||||||
|
/etc/init.d/httpd reload
|
||||||
|
else
|
||||||
|
/bin/systemctl reload httpd.service
|
||||||
|
fi
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
|
@ -106,7 +110,11 @@ fi
|
||||||
/etc/init.d/apache2 reload
|
/etc/init.d/apache2 reload
|
||||||
%endif
|
%endif
|
||||||
%if %is_fedora
|
%if %is_fedora
|
||||||
/etc/init.d/httpd reload
|
if [ -e /etc/init.d/httpd ]; then
|
||||||
|
/etc/init.d/httpd reload
|
||||||
|
else
|
||||||
|
/bin/systemctl reload httpd.service
|
||||||
|
fi
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
|
Loading…
Reference in New Issue