mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-25 23:25:24 +00:00
21 lines
581 B
SYSTEMD
21 lines
581 B
SYSTEMD
|
# NB we don't use socket activation. When libvirtd starts it will
|
||
|
# spawn any virtual machines registered for autostart. We want this
|
||
|
# to occur on every boot, regardless of whether any client connects
|
||
|
# to a socket. Thus socket activation doesn't have any benefit
|
||
|
|
||
|
[Unit]
|
||
|
Description=Virtualization daemon
|
||
|
After=syslog.target
|
||
|
After=udev.target
|
||
|
After=avahi.target
|
||
|
After=dbus.target
|
||
|
Before=libvirt-guests.service
|
||
|
|
||
|
[Service]
|
||
|
EnvironmentFile=-/etc/sysconfig/libvirtd
|
||
|
ExecStart=@sbindir@/libvirtd $LIBVIRTD_ARGS
|
||
|
ExecReload=/bin/kill -HUP $MAINPID
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|