forked from rpms/osbuild-composer
import osbuild-composer-69-1.el8
This commit is contained in:
parent
cff0bbb8ca
commit
076fa4f473
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/osbuild-composer-68.tar.gz
|
||||
SOURCES/osbuild-composer-69.tar.gz
|
||||
|
@ -1 +1 @@
|
||||
da3dd4a5b7d18798d926b4bb1e1d627f6069f14a SOURCES/osbuild-composer-68.tar.gz
|
||||
c644ce7f5fec39f8263dde143a103d2da450152e SOURCES/osbuild-composer-69.tar.gz
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
%global goipath github.com/osbuild/osbuild-composer
|
||||
|
||||
Version: 68
|
||||
Version: 69
|
||||
|
||||
%gometa
|
||||
|
||||
@ -326,8 +326,9 @@ The worker for osbuild-composer
|
||||
%preun worker
|
||||
# systemd_preun uses systemctl disable --now which doesn't work well with template services.
|
||||
# See https://github.com/systemd/systemd/issues/15620
|
||||
# The following lines mimicks its behaviour by running two commands:
|
||||
if [ -d /run/systemd/system ]; then
|
||||
# The following lines mimicks its behaviour by running two commands.
|
||||
# The scriptlet is supposed to run only when the package is being removed.
|
||||
if [ $1 -eq 0 ] && [ -d /run/systemd/system ]; then
|
||||
# disable and stop all the worker services
|
||||
systemctl --no-reload disable osbuild-worker@.service osbuild-remote-worker@.service
|
||||
systemctl stop "osbuild-worker@*.service" "osbuild-remote-worker@*.service"
|
||||
@ -427,6 +428,9 @@ Integration tests to be run on a pristine-dedicated system to test the osbuild-c
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Wed Nov 30 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 69-1
|
||||
- New upstream release
|
||||
|
||||
* Wed Nov 16 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 68-1
|
||||
- New upstream release
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user