`podman` fails to run on [OL9 box](https://oracle.github.io/vagrant-projects/boxes/oraclelinux/9.json) with `oracle-olcne-release-el9` with error: ``` [conmon:e] Include journald in compilation path to log to systemd journal Error: write child: broken pipe ``` **To replicate:** 1. Vagrantfile ```ruby Vagrant.configure("2") do |config| config.vm.box = "oraclelinux/9" config.vm.box_url = "https://oracle.github.io/vagrant-projects/boxes/oraclelinux/9.json" end ``` 2. Run the following: ```shell sudo dnf install -y oracle-olcne-release-el9 sudo dnf install -y podman podman run hello ``` results in an error: ``` [conmon:e] Include journald in compilation path to log to systemd journal Error: write child: broken pipe ``` **Workarounds** 1. Don't log ```shell podman run --log-driver none hello ``` 2. Don't install `oracle-olcne-release-el9` 3. Don't install `conmon` from OCNE v1.7: ```shell sudo dnf install -y conmon sudo dnf install -y oracle-olcne-release-el9 sudo dnf install -y podman podman run hello ``` --- I would like to bump the [ONCE](https://github.com/oracle/vagrant-projects/tree/main/OCNE) project to v1.7 on OL9. Your input is highly appreciated. Thank you!