Take the initial unit (which is a failure unit for another service) /usr/lib/systemd/system/[email protected]
[Unit]
Description=Failed Unit for %i
Conflicts=some-unit.target
[Service]
Type=Oneshot
ExecStart=/usr/bin/echo "Something"
I want to override the conflicts param for one instance type
I have tried something like this....
/usr/lib/systemd/system/[email protected]/override.conf
[Unit]
Conflicts=
But systemctl show [email protected]
still shows
Conflicts=shutdown.target some-unit.target
I suspect this has something to do with the template nature, but I cannot find any references or articles to what the exact nature of this is, or how to handle it.
I have the same thing happening with some overrides with ExecStart as well.