mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-28 08:35:22 +00:00
49c6fe6201
There is plenty of distributions that haven't switched to systemd nor they force their users to (Gentoo, Alpine Linux to name a few). With the daemon split merged their only option is to still use the monolithic daemon which will go away eventually. Provide init scripts for these distros too. For now, I'm not introducing config files which would correspond to the init files except for libvirtd and virtproxyd init scripts where it might be desirable to tweak the command line of corresponding daemons. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
19 lines
740 B
Plaintext
19 lines
740 B
Plaintext
# /etc/conf.d/libvirtd
|
|
|
|
# Startup dependency
|
|
# libvirtd typically requires all networks to be up and settled which
|
|
# is what rc_need="net" provides. However if you only use specific networks
|
|
# for libvirtd, you may override this. Or if you only use libvirtd locally.
|
|
rc_need="net"
|
|
|
|
# The termination timeout (start-stop-daemon parameter "retry") ensures
|
|
# that the service will be terminated within a given time (25 + 5 seconds
|
|
# per default) when you are stopping the service.
|
|
#LIBVIRTD_TERMTIMEOUT="TERM/25/KILL/5"
|
|
|
|
# LIBVIRTD_OPTS
|
|
# You may want to add '--listen' to have libvirtd listen for tcp/ip connections
|
|
# if you want to use libvirt for remote control
|
|
# Please consult 'libvirtd --help' for more options
|
|
#LIBVIRTD_OPTS="--listen"
|