By default, SAT uses Boot Orchestration Service (BOS) version two (v2). You can
select the BOS version to use for individual commands with the --bos-version
option. For more information on this option, refer to the man page for a specific
command.
You can also configure the BOS version to use in the SAT config file. Do this
under the api_version
setting in the bos
section of the config file. If
the system is using an existing SAT config file from an older version of SAT,
the bos
section might not exist. In that case, add the bos
section with the
BOS version desired in the api_version
setting.
Find the SAT config file at ~/.config/sat/sat.toml
, and look for a section
like this:
[bos]
api_version = "v2"
In this example, SAT is using BOS version "v2"
.
Change the line specifying the api_version
to the BOS version desired (for
example, "v1"
).
[bos]
api_version = "v1"
If applicable, uncomment the api_version
line.
If the system is using an existing SAT config file from a recent version of
SAT, the api_version
line might be commented out like this:
[bos]
# api_version = "v2"
If the line is commented out, SAT will still use the default BOS
version. To ensure a different BOS version is used, uncomment the
api_version
line by removing #
at the beginning of the line.