|
|
|
@ -15,7 +15,16 @@
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# The (global) timeout for the command list can be set with
|
|
|
|
# The (global) timeout for the command list can be set with
|
|
|
|
# the *timeout* key. The value is a time in seconds, default
|
|
|
|
# the *timeout* key. The value is a time in seconds, default
|
|
|
|
# is 10 seconds if not set.
|
|
|
|
# is 30 seconds if not set. The timeout **must** be tuned, either
|
|
|
|
|
|
|
|
# globally or per-command (see below in the description of *script*),
|
|
|
|
|
|
|
|
# to the load or expected running-time of the command.
|
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
# - Setting a timeout of 30 for a `touch` command is probably exessive
|
|
|
|
|
|
|
|
# - Setting a timeout of 1 for a `touch` command might be low,
|
|
|
|
|
|
|
|
# on a slow disk where touch needs to be loaded from CDROM
|
|
|
|
|
|
|
|
# - Setting a timeout of 30 for a 1GB download is definitely low
|
|
|
|
|
|
|
|
# - Setting a timeout of 3600 for a 1GB download is going to leave
|
|
|
|
|
|
|
|
# the user in uncertainty for a loooong time.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# If a command starts with "-" (a single minus sign), then the
|
|
|
|
# If a command starts with "-" (a single minus sign), then the
|
|
|
|
# return value of the command following the - is ignored; otherwise,
|
|
|
|
# return value of the command following the - is ignored; otherwise,
|
|
|
|
@ -40,8 +49,10 @@
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# To change the description of the job, set the *name* entries in *i18n*.
|
|
|
|
# To change the description of the job, set the *name* entries in *i18n*.
|
|
|
|
---
|
|
|
|
---
|
|
|
|
|
|
|
|
# Set to true to run in host, rather than target system
|
|
|
|
dontChroot: false
|
|
|
|
dontChroot: false
|
|
|
|
timeout: 10
|
|
|
|
# Tune this for the commands you're actually running
|
|
|
|
|
|
|
|
# timeout: 10
|
|
|
|
|
|
|
|
|
|
|
|
# Script may be a single string (because false returns an error exit
|
|
|
|
# Script may be a single string (because false returns an error exit
|
|
|
|
# code, this will trigger a failure in the installation):
|
|
|
|
# code, this will trigger a failure in the installation):
|
|
|
|
|