]> TLD Linux GIT Repositories - packages/libvirt.git/blob - libvirt-guests.sysconfig
- updated to 10.2.0
[packages/libvirt.git] / libvirt-guests.sysconfig
1 # URIs to check for running guests
2 # example: URIS='default xen:///system vbox+tcp://host/system lxc:///system'
3 #URIS=default
4
5 # action taken on host boot
6 # - start   all guests which were running on shutdown are started on boot
7 #           regardless on their autostart settings
8 # - ignore  libvirt-guests init script won't start any guest on boot, however,
9 #           guests marked as autostart will still be automatically started by
10 #           libvirtd
11 #ON_BOOT=start
12
13 # Number of seconds to wait between each guest start. Set to 0 to allow
14 # parallel startup.
15 #START_DELAY=0
16
17 # action taken on host shutdown
18 # - suspend   all running guests are suspended using virsh managedsave
19 # - shutdown  all running guests are asked to shutdown. Please be careful with
20 #             this settings since there is no way to distinguish between a
21 #             guest which is stuck or ignores shutdown requests and a guest
22 #             which just needs a long time to shutdown. When setting
23 #             ON_SHUTDOWN=shutdown, you must also set SHUTDOWN_TIMEOUT to a
24 #             value suitable for your guests.
25 #ON_SHUTDOWN=suspend
26
27 # Number of guests will be shutdown concurrently, taking effect when
28 # "ON_SHUTDOWN" is set to "shutdown". If Set to 0, guests will be shutdown one
29 # after another. Number of guests on shutdown at any time will not exceed number
30 # set in this variable.
31 #PARALLEL_SHUTDOWN=0
32
33 # Number of seconds we're willing to wait for a guest to shut down. If parallel
34 # shutdown is enabled, this timeout applies as a timeout for shutting down all
35 # guests on a single URI defined in the variable URIS. If this is 0, then there
36 # is no time out (use with caution, as guests might not respond to a shutdown
37 # request). The default value is 300 seconds (5 minutes).
38 #SHUTDOWN_TIMEOUT=300
39
40 # If non-zero, try to bypass the file system cache when saving and
41 # restoring guests, even though this may give slower operation for
42 # some file systems.
43 #BYPASS_CACHE=0
44
45 # If non-zero, try to sync guest time on domain resume. Be aware, that
46 # this requires guest agent with support for time synchronization
47 # running in the guest. For instance, qemu-ga doesn't support guest time
48 # synchronization on Windows guests, but Linux ones. By default, this
49 # functionality is turned off.
50 #SYNC_TIME=1