Accepting request 761593 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/761593 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/conmon?expand=0&rev=6
This commit is contained in:
parent
e5b47ab7d0
commit
902be7cedb
4
_service
4
_service
@ -2,8 +2,8 @@
|
|||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="disabled">
|
||||||
<param name="url">https://github.com/containers/conmon</param>
|
<param name="url">https://github.com/containers/conmon</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="versionformat">2.0.3</param>
|
<param name="versionformat">2.0.9</param>
|
||||||
<param name="revision">v2.0.3</param>
|
<param name="revision">v2.0.9</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="disabled">
|
||||||
<param name="file">conmon-*.tar</param>
|
<param name="file">conmon-*.tar</param>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3201ea9533c38ea78a0bb654fd02c0ed508010a59524b1d1a42c7d6341d4931d
|
|
||||||
size 47064
|
|
3
conmon-2.0.9.tar.xz
Normal file
3
conmon-2.0.9.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9858c09246495adff84f5c4178b83ae882314287c56c7b9fd4964975a00ae490
|
||||||
|
size 47524
|
@ -1,3 +1,42 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 7 12:20:08 UTC 2020 - Sascha Grunert <sgrunert@suse.com>
|
||||||
|
|
||||||
|
- Add TimedOutMessage to config to share with go code
|
||||||
|
- Fix format string to limit the size of the string to 10
|
||||||
|
characters
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 16 08:41:54 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
||||||
|
|
||||||
|
- Persist oom files on cgroup v2
|
||||||
|
- Revert the check for the OOM counter on cgroups v1 before
|
||||||
|
writing OOM file
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Dec 13 08:23:04 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
||||||
|
|
||||||
|
- Add --persist-dir flag to allow important container files to be
|
||||||
|
written to a persistent directory
|
||||||
|
- Check OOM counter on cgroups v1 before writing OOM file
|
||||||
|
- Use splice(2) to copy from stdin
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 12 11:37:19 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
||||||
|
|
||||||
|
- Kill the process group on timeout
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 11 07:39:29 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
||||||
|
|
||||||
|
- Add --persist-dir to allow callers to specify a directory that
|
||||||
|
conmon should mirror certain important files that should persist
|
||||||
|
reboots (right now, just the container exit file)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 9 17:34:49 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
||||||
|
|
||||||
|
- Fix tight loop on OOM
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 14 14:25:29 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
Thu Nov 14 14:25:29 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
||||||
|
|
||||||
@ -8,7 +47,7 @@ Thu Nov 14 14:25:29 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
|||||||
Tue Oct 29 09:03:03 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
Tue Oct 29 09:03:03 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
||||||
|
|
||||||
- Add CONN_SOCK_BUF_SIZE to config
|
- Add CONN_SOCK_BUF_SIZE to config
|
||||||
- Fix bug to close the sync pipe before exit command
|
- Fix bug to close the sync pipe before exit command
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 16 16:59:28 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
Mon Sep 16 16:59:28 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
||||||
@ -27,7 +66,7 @@ Fri Aug 16 11:48:30 UTC 2019 - Sascha Grunert <sgrunert@suse.com>
|
|||||||
- Use `%make_build` macro instead of `%{__make}`
|
- Use `%make_build` macro instead of `%{__make}`
|
||||||
- Use `%make_install` macro instead of `%{__make} install`
|
- Use `%make_install` macro instead of `%{__make} install`
|
||||||
- Use `%{_bindir}` macro instead of `%{_usr}/bin`
|
- Use `%{_bindir}` macro instead of `%{_usr}/bin`
|
||||||
- Change `PREFIX` to not contain `%{buildroot}` and use the
|
- Change `PREFIX` to not contain `%{buildroot}` and use the
|
||||||
`$DESTDIR` variable
|
`$DESTDIR` variable
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package conmon
|
# spec file for package conmon
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LLC.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: conmon
|
Name: conmon
|
||||||
Version: 2.0.3
|
Version: 2.0.9
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An OCI container runtime monitor
|
Summary: An OCI container runtime monitor
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
|
Loading…
Reference in New Issue
Block a user