Add test script for development

This commit is contained in:
Suikan 2022-03-02 07:24:56 +09:00
parent fdfd8953d5
commit 4699f87cc7
5 changed files with 346 additions and 2 deletions

View file

@ -14,11 +14,39 @@ export ERASEALL=0
# Keep it unique from other distribution.
export LVROOTNAME="anko"
# Suffix of the optional logical volumes.
# If you want to have optional OVs, set USELVEXT# to 1.
# Then, the suffix will be added to the LVROOTNAME.
# For example, Assume you have setting below :
# LVROOTNAME="anko"
# USELVEXT1=1
# LVEXT1SUFFIX="_home"
# USELVEXT2=0
# LVEXT2SUFFIX="_var"
# You will have
# anko
# anko_home
# You will not have anko_var because the USELVEXT2=0.
export USELVEXT1=0
export LVEXT1SUFFIX="_home"
export USELVEXT2=0
export LVEXT2SUFFIX="_var"
# 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.
export LVROOTSIZE="50%FREE"
# Note that the order of the volume creation is :
# 1. EFI if needed
# 2. SWAP
# 3. LVROOT
# 4. LVEXT1 if needed
# 5. LVEXT2 if needed
export LVROOTSIZE="10%FREE"
# Logical volume size of the optional volumes.
export LVEXT1SIZE="90%FREE"
export LVEXT2SIZE="100%FREE"
# Set the size of EFI partition and swap partition.
# The unit is Byte. You can use M,G... notation.