diff options
-rwxr-xr-x | functions/defaults.sh | 1 | ||||
-rw-r--r-- | manpages/en/lb_config.1 | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index ae311a2cd..73b90bed7 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -574,6 +574,7 @@ Set_config_defaults () # Setting image type LB_SOURCE_IMAGES="${LB_SOURCE_IMAGES:-tar}" + LB_SOURCE_IMAGES="$(echo "${LB_SOURCE_IMAGES}" | tr "," " ")" } Check_config_defaults () diff --git a/manpages/en/lb_config.1 b/manpages/en/lb_config.1 index 83856796f..7cbb8167f 100644 --- a/manpages/en/lb_config.1 +++ b/manpages/en/lb_config.1 @@ -467,7 +467,7 @@ defines if the security repositories specified in the security mirror options sh .IP "\fB\-\-source\fR true|false" 4 defines if a corresponding source image to the binary image should be build. By default this is false because most people do not require this and would require to download quite a few source packages. However, if you distribute your live image to others, you should make sure you build it with a source image alongside to help enable you to comply with licensing terms. .IP "\-s|\fB\-\-source\-images\fR iso|netboot|tar|hdd" 4 -defines the image type for the source image. Default is tar. More than one can be specified (space separated). +defines the image type for the source image. Default is tar. More than one can be specified (comma or space separated). .IP "\fB\-\-swap\-file\-path\fR \fIPATH\fR" 4 defines the path to a swap file to create in the binary image. Default is not to create a swap file. .IP "\fB\-\-swap\-file\-size\fR \fIMB\fR" 4 |