Darragh O'Reilly
Darragh O'Reilly
`podman-compose -d` is just calls `podman -d` - https://github.com/containers/podman-compose/blob/9d5b2559274819e3b47230da85d4d306807bb4bf/podman_compose.py#L2440-L2442 . The issue is not specific to podman-compose. With podman 3.4.4 and dnsname 1.3.1 entries for detached containers don't get removed...
After hacking the code to see the logs, I see this error > stat /run/containers/cni/dnsname/net3: no such file or directory It should be ` /run/user/0/containers/cni/dnsname/net3`. The shell that runs the...
why not use the built-in idempotency that the ansible pip module provides? like: ``` - name: install python-pip package apt: pkg=python-pip - name: install or upgrade python six library pip:...
It seems the grok `SYSLOGTIMESTAMP` parses dates like `Jul 9 15:00:29`. But even then the timestamp conversion results in the year 0000 and does not account for the local timezone....
It seems rsyslog uses the timezone from /etc/timezone https://stackoverflow.com/questions/22853026/ubuntu-change-timezone-to-utc-does-not-affect-the-time-of-syslog
> This is on ubuntu 24.04 which uses rsyslog 8.2312.0. According to the rsyslog documentation , the timestamps are in RFC 3339 format unless RSYSLOG_TraditionalFileFormat is specified So ubuntu 24.04...
I was seeing different integration tests timeout randomly. Found that the VM had only 3.5GB of memory and swapping was slowing everything down.
https://github.com/elastic/go-libaudit/issues/163
I believe the legal team at SUSE have signed the CLA with me as a contributor.
Maybe you need to do add `_ "github.com/glebarez/go-sqlite"` to your imports like this: https://github.com/knqyf263/go-rpmdb/blob/facee9e1ddafec177b8e3159f61fb747c0762bdf/cmd/rpmdb/main.go#L10