From e2aea91c11656a83b2d10720464175a7d161444c Mon Sep 17 00:00:00 2001 From: Suikan <26223147+suikan4github@users.noreply.github.com> Date: Wed, 7 Jul 2021 14:10:25 +0900 Subject: [PATCH] Reformat the comment of config. For the easy modification by nano editor --- script/config.sh | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/script/config.sh b/script/config.sh index 6f32dfe..7e79a78 100644 --- a/script/config.sh +++ b/script/config.sh @@ -10,15 +10,18 @@ export DEV="/dev/sda" # 0 : No, I don't. I want to add to the existing LUKS volume. export ERASEALL=0 -# Logical Volume name for your Linux installation. Keep it unique from other distribution. +# Logical Volume name for your Linux installation. +# Keep it unique from other distribution. export LVROOTNAME="anko" # Logical volume size of the Linux installation. -# 30% mean, new logical volume will use 30% of the free space in the LVM volume group. -# For example, assume the free space is 100GB, and LVROOTSIZE is 30%FREE. Script will create 30GB logical volume. +# 30% mean, new logical volume will use 30% of the free space +# in the LVM volume group. For example, assume the free space is 100GB, +# and LVROOTSIZE is 30%FREE. Script will create 30GB logical volume. export LVROOTSIZE="50%FREE" -# Set the size of EFI partition and swap partition. The unit is Byte. you can use M,G... notation. +# Set the size of EFI partition and swap partition. +# The unit is Byte. You can use M,G... notation. export EFISIZE="200M" export LVSWAPSIZE="8G" @@ -28,11 +31,12 @@ export CRYPTPARTNAME="luks_volume" export VGNAME="vg1" export LVSWAPNAME="swap" -# Do not touch this parameter, unless you understand precisely what you are doing. -# 1 : Overwrite the existing logical volume as root vlume. 0 : Create new logical volume as root volume. +# Do not touch this parameter, unless you understand what you are doing. +# 1 : Overwrite the existing logical volume as root vlume. +# 0 : Create new logical volume as root volume. export OVERWRITEINSTALL=0 -# Do not touch this parameter, unless you understand precisely what you are doing. +# Do not touch this parameter, unless you understand what you are doing. # This is a paameter value of the --iter-time option for cyrptsetup command. # If you specify 1000, that means 1000mSec. 0 means compile default. export ITERTIME=0