systemd-machined.service 958 B

1234567891011121314151617181920212223
  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=Virtual Machine and Container Registration Service
  9. Documentation=man:systemd-machined.service(8)
  10. Documentation=http://www.freedesktop.org/wiki/Software/systemd/machined
  11. Wants=machine.slice
  12. After=machine.slice
  13. [Service]
  14. ExecStart=/lib/systemd/systemd-machined
  15. BusName=org.freedesktop.machine1
  16. CapabilityBoundingSet=CAP_KILL CAP_SYS_PTRACE CAP_SYS_ADMIN CAP_SETGID CAP_SYS_CHROOT CAP_DAC_READ_SEARCH CAP_DAC_OVERRIDE CAP_CHOWN CAP_FOWNER CAP_FSETID CAP_MKNOD
  17. WatchdogSec=3min
  18. # Note that machined cannot be placed in a mount namespace, since it
  19. # needs access to the host's mount namespace in order to implement the
  20. # "machinectl bind" operation.