From 9c432cf11e60d50f1adda224708c691a293a3ed0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Elan=20Ruusam=C3=A4e?= Date: Fri, 29 Jul 2016 15:24:05 +0300 Subject: [PATCH] document options usage from VBoxService --help --- vboxservice.sysconfig | 37 +++++++++++++++++++++++++++++-------- 1 file changed, 29 insertions(+), 8 deletions(-) diff --git a/vboxservice.sysconfig b/vboxservice.sysconfig index f20f423..f555a65 100644 --- a/vboxservice.sysconfig +++ b/vboxservice.sysconfig @@ -1,8 +1,29 @@ -VBOXADD_SERVICE_ARGS="" -#VBOXADD_SERVICE_ARGS+=" --disable-timesync" -#VBOXADD_SERVICE_ARGS+=" --timesync-interval 10000" -#VBOXADD_SERVICE_ARGS+=" --timesync-min-adjust 1000" -#VBOXADD_SERVICE_ARGS+=" --timesync-latency-factor 8" -#VBOXADD_SERVICE_ARGS+=" --timesync-max-latency 250" -#VBOXADD_SERVICE_ARGS+=" --disable-vminfo" -#VBOXADD_SERVICE_ARGS+=" --vminfo-interval 10000" +# Options for VBoxService + +# Disables the timesync service. +#OPTIONS="$OPTIONS --disable-timesync" + +# Set the time when starting the time sync service. +#OPTIONS="$OPTIONS --timesync-set-start" + +# Specifies the interval at which to synchronize the time with the host. +# The default is 10000 ms. +#OPTIONS="$OPTIONS --timesync-interval 10000" + +# The minimum absolute drift value measured in milliseconds to make adjustments for. +#OPTIONS="$OPTIONS --timesync-min-adjust 1000" + +# The factor to multiply the time query latency with to calculate the dynamic minimum adjust time. +# The default is 8 times. +#OPTIONS="$OPTIONS --timesync-latency-factor 8" + +# The max host timer query latency to accept. +# The default is 250 ms. +#OPTIONS="$OPTIONS --timesync-max-latency 250" + +# Disables the vminfo service. +#OPTIONS="$OPTIONS --disable-vminfo" + +# Specifies the interval at which to retrieve the VM information. +# The default is 10000 ms. +#OPTIONS="$OPTIONS --vminfo-interval 10000" -- 2.44.0