I am testing systemd-nspawn
and launch a base system testcont
(previously created with debootstrap
) either via
# systemd-nspawn -bD testcont --network-bridge=br1
or
# systemctl start systemd-nspawn@testcont.service
In the first case I can pass some arguments to systemd-nspawn
(notably the bridge I want to use) - how can I do that in the second case?
For services I create myself I have the relevant /etc/systemd/systemd/<something>.service
file I can adapt but in the case above the service is somehow magically started though systemd-nspawn@
and there is no configuration file I could find.