systemd-nspawn@.service 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # This file is part of systemd.
  2. #
  3. # systemd is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU Lesser General Public License as published by
  5. # the Free Software Foundation; either version 2.1 of the License, or
  6. # (at your option) any later version.
  7. [Unit]
  8. Description=Container %i
  9. Documentation=man:systemd-nspawn(1)
  10. PartOf=machines.target
  11. Before=machines.target
  12. After=network.target
  13. [Service]
  14. ExecStart=/usr/bin/systemd-nspawn --quiet --keep-unit --boot --link-journal=try-guest --network-veth -U --settings=override --machine=%i
  15. KillMode=mixed
  16. Type=notify
  17. RestartForceExitStatus=133
  18. SuccessExitStatus=133
  19. Slice=machine.slice
  20. Delegate=yes
  21. TasksMax=8192
  22. # Enforce a strict device policy, similar to the one nspawn configures
  23. # when it allocates its own scope unit. Make sure to keep these
  24. # policies in sync if you change them!
  25. DevicePolicy=strict
  26. DeviceAllow=/dev/null rwm
  27. DeviceAllow=/dev/zero rwm
  28. DeviceAllow=/dev/full rwm
  29. DeviceAllow=/dev/random rwm
  30. DeviceAllow=/dev/urandom rwm
  31. DeviceAllow=/dev/tty rwm
  32. DeviceAllow=/dev/net/tun rwm
  33. DeviceAllow=/dev/pts/ptmx rw
  34. DeviceAllow=char-pts rw
  35. # nspawn itself needs access to /dev/loop-control and /dev/loop, to
  36. # implement the --image= option. Add these here, too.
  37. DeviceAllow=/dev/loop-control rw
  38. DeviceAllow=block-loop rw
  39. DeviceAllow=block-blkext rw
  40. [Install]
  41. WantedBy=machines.target