fix the problem that isula-build service did not stop after it removed
This commit is contained in:
parent
3cc97f57c5
commit
5832f64e83
@ -1 +1 @@
|
|||||||
0.9.6-18
|
0.9.6-21
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
37aa4197d30b2780332cd40479f3231a775b212f
|
2d64e7a9d75932f70713da4bc7a003ff23f10d4a
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Name: isula-build
|
Name: isula-build
|
||||||
Version: 0.9.6
|
Version: 0.9.6
|
||||||
Release: 20
|
Release: 21
|
||||||
Summary: A tool to build container images
|
Summary: A tool to build container images
|
||||||
License: Mulan PSL V2
|
License: Mulan PSL V2
|
||||||
URL: https://gitee.com/openeuler/isula-build
|
URL: https://gitee.com/openeuler/isula-build
|
||||||
@ -78,6 +78,16 @@ if ! getent group isula > /dev/null; then
|
|||||||
groupadd --system isula
|
groupadd --system isula
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
%preun
|
||||||
|
%if 0%{?is_systemd}
|
||||||
|
%systemd_preun isula-build
|
||||||
|
%else
|
||||||
|
if [ $1 -eq 0 ] ; then
|
||||||
|
/sbin/service isula-build stop >/dev/null 2>&1
|
||||||
|
/sbin/chkconfig --del isula-build
|
||||||
|
fi
|
||||||
|
%endif
|
||||||
|
|
||||||
%files
|
%files
|
||||||
# default perm for files and folder
|
# default perm for files and folder
|
||||||
%defattr(0640,root,root,0550)
|
%defattr(0640,root,root,0550)
|
||||||
@ -95,6 +105,12 @@ fi
|
|||||||
/usr/share/bash-completion/completions/isula-build
|
/usr/share/bash-completion/completions/isula-build
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Dec 28 2023 daisicheng <daisicheng@huawei.com> - 0.9.6-21
|
||||||
|
- Type:bugfix
|
||||||
|
- CVE:NA
|
||||||
|
- SUG:NA
|
||||||
|
- DESC:fix the problem that isula-build service did not stop after it removed
|
||||||
|
|
||||||
* Sat Jun 17 2023 panchenbo <panchenbo@kylinsec.com.cn> - 0.9.6-20
|
* Sat Jun 17 2023 panchenbo <panchenbo@kylinsec.com.cn> - 0.9.6-20
|
||||||
- Type:bugfix
|
- Type:bugfix
|
||||||
- CVE:NA
|
- CVE:NA
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user