mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-07 04:07:17 +00:00
The virtsecretd daemon will be responsible for providing the secret API driver functionality. The secret driver is still loaded by the main libvirtd daemon at this stage, so virtsecretd must not be running at the same time. Reviewed-by: Christophe de Dinechin <dinechin@redhat.com> Reviewed-by: Andrea Bolognani <abologna@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
25 lines
559 B
SYSTEMD
25 lines
559 B
SYSTEMD
[Unit]
|
|
Description=Virtualization secret daemon
|
|
Conflicts=libvirtd.service
|
|
Requires=virtsecretd.socket
|
|
Requires=virtsecretd-ro.socket
|
|
Requires=virtsecretd-admin.socket
|
|
After=network.target
|
|
After=dbus.service
|
|
After=apparmor.service
|
|
After=local-fs.target
|
|
Documentation=man:libvirtd(8)
|
|
Documentation=https://libvirt.org
|
|
|
|
[Service]
|
|
Type=notify
|
|
ExecStart=@sbindir@/virtsecretd --timeout 120
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
|
Restart=on-failure
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
Also=virtsecretd.socket
|
|
Also=virtsecretd-ro.socket
|
|
Also=virtsecretd-admin.socket
|