Open Nosirus opened 5 days ago
I found the cause, the service "podman-user-wait-network-online" could not find "sh" so I redid the service like this:
systemd.user.services.podman-user-wait-network-online = {
Unit = { Description = "Wait for system level network-online.target as user"; };
Service = {
Type = "oneshot";
ExecStart = "${pkgs.bash}/bin/sh -c 'until systemctl is-active network-online.target; do sleep 0.5; done'";
TimeoutStartSec = "90s";
RemainAfterExit = true;
};
Install = { WantedBy = [ "default.target" ]; };
};
This is also causing home-manager CI to fail on PR commits; see #6153 for an example
Fixed by #6150
Are you following the right branch?
Is there an existing issue for this?
Issue description
When I try the podman module, at startup nothing starts and I find this error in the service logs.
But if I start it manually with systemctl --user start podman-epicgame.service it works
nov. 28 13:26:09 cobblepot systemd[2034]: Starting Service for container gotify... nov. 28 13:26:09 cobblepot podman[3347]: 2024-11-28 13:26:09.530256926 +0100 CET m=+0.041632954 container create d4cb699cc558de2562921803192f015201913d13e65953114150ee965207b4c9 (image=docker.io/gotify/ser> nov. 28 13:26:09 cobblepot pasta[3472]: External interface not usable nov. 28 13:26:09 cobblepot podman[3347]: 2024-11-28 13:26:09.554409169 +0100 CET m=+0.065785217 container remove d4cb699cc558de2562921803192f015201913d13e65953114150ee965207b4c9 (image=docker.io/gotify/ser> nov. 28 13:26:09 cobblepot podman-gotify[3347]: Error: setting up Pasta: pasta failed with exit code 1: nov. 28 13:26:09 cobblepot podman-gotify[3347]: External interface not usable
Maintainer CC
No response
System information