Accepting request 507735 from home:dimstar:Factory
- Run systemctl daemon-reload even when this is not build with systemd support: if installing bind on a systemd service and not reloading systemd daemon, then the service 'named' is not known right after package installation, causing confusion. OBS-URL: https://build.opensuse.org/request/show/507735 OBS-URL: https://build.opensuse.org/package/show/network/bind?expand=0&rev=212
This commit is contained in:
parent
43448a770a
commit
4215a9d83e
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 3 08:47:39 UTC 2017 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Run systemctl daemon-reload even when this is not build with
|
||||||
|
systemd support: if installing bind on a systemd service and not
|
||||||
|
reloading systemd daemon, then the service 'named' is not known
|
||||||
|
right after package installation, causing confusion.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 30 07:12:50 UTC 2017 - sflees@suse.de
|
Fri Jun 30 07:12:50 UTC 2017 - sflees@suse.de
|
||||||
|
|
||||||
|
@ -734,6 +734,13 @@ if [ -f ${NAMED_ACTIVE_FILE} ]; then
|
|||||||
sbin/insserv named
|
sbin/insserv named
|
||||||
test ! -s ${NAMED_ACTIVE_FILE} && rm -f ${NAMED_ACTIVE_FILE}
|
test ! -s ${NAMED_ACTIVE_FILE} && rm -f ${NAMED_ACTIVE_FILE}
|
||||||
fi
|
fi
|
||||||
|
if [ -x %{_bindir}/systemctl ]; then
|
||||||
|
# make sure systemctl knows about the service even though it's not a systemd service
|
||||||
|
# Without this, systemctl status named would return
|
||||||
|
# Unit named.service could not be found.
|
||||||
|
# until systemctl daemon-reload has been executed
|
||||||
|
%{_bindir}/systemctl daemon-reload || :
|
||||||
|
fi
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
|
Loading…
x
Reference in New Issue
Block a user