mirror of
https://github.com/suikan4github/kaiten-yaki.git
synced 2025-12-20 10:31:17 -03:00
test subdirectory is removed.
This commit is contained in:
parent
121f1950b8
commit
eb6f0eef0f
5 changed files with 0 additions and 219 deletions
|
|
@ -1,112 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# #####################################
|
|
||||||
|
|
||||||
# Test setup.
|
|
||||||
# /dev/sdb/
|
|
||||||
# ERASEALL
|
|
||||||
# LVROOT 10%
|
|
||||||
# LVEXT1 90%
|
|
||||||
# LVEXT2 10%
|
|
||||||
|
|
||||||
# #####################################
|
|
||||||
|
|
||||||
# Configuration parameters for Kaiten-Yaki
|
|
||||||
|
|
||||||
# Storage device to install the linux.
|
|
||||||
export DEV="/dev/sdb"
|
|
||||||
|
|
||||||
# Whether you want to erase all contents of the storage device or not.
|
|
||||||
# 1 : Yes, I want to erase all.
|
|
||||||
# 0 : No, I don't. I want to add to the existing LUKS volume.
|
|
||||||
export ERASEALL=1
|
|
||||||
|
|
||||||
# Logical Volume name for your Linux installation.
|
|
||||||
# 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=1
|
|
||||||
export LVEXT1SUFFIX="_home"
|
|
||||||
export USELVEXT2=1
|
|
||||||
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.
|
|
||||||
# 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.
|
|
||||||
export EFISIZE="200M"
|
|
||||||
export LVSWAPSIZE="8G"
|
|
||||||
|
|
||||||
# Usually, these names can be left untouched.
|
|
||||||
# If you change, keep them consistent through all installation in your system.
|
|
||||||
export CRYPTPARTNAME="luks_test"
|
|
||||||
export VGNAME="vg_test"
|
|
||||||
export LVSWAPNAME="swap"
|
|
||||||
|
|
||||||
# Do not touch this parameter, unless you understand what you are doing.
|
|
||||||
# 1 : Overwrite the existing logical volume as root volume.
|
|
||||||
# 0 : Create new logical volume as root volume.
|
|
||||||
export OVERWRITEINSTALL=0
|
|
||||||
|
|
||||||
# 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
|
|
||||||
|
|
||||||
# Void Linux only. Ignored in Ubuntu.
|
|
||||||
# The font size of the void-installer
|
|
||||||
export XTERMFONTSIZE=11
|
|
||||||
|
|
||||||
# !!!!!!!!!!!!!! DO NOT EDIT FOLLOWING LINES. !!!!!!!!!!!!!!
|
|
||||||
|
|
||||||
# Detect firmware type. 1 : EFI, 0 : BIOS
|
|
||||||
if [ -d /sys/firmware/efi ]; then
|
|
||||||
export ISEFI=1 # Yes, EFI
|
|
||||||
else
|
|
||||||
export ISEFI=0 # No, BIOS
|
|
||||||
fi # is EFI firmaare?
|
|
||||||
|
|
||||||
# Set partition number based on the firmware type
|
|
||||||
if [ ${ISEFI} -ne 0 ] ; then
|
|
||||||
# EFI firmware
|
|
||||||
export EFIPARTITION=1
|
|
||||||
export CRYPTPARTITION=2
|
|
||||||
else
|
|
||||||
# BIOS firmware
|
|
||||||
export CRYPTPARTITION=1
|
|
||||||
fi # EFI firmware
|
|
||||||
|
|
||||||
# Detect the GUI environment
|
|
||||||
# This code is not efered. Just left because it is interestintg code.
|
|
||||||
if env | grep -w -e XDG_SESSION_TYPE -e DISPLAY -e WAYLAND_DISPLAY > /dev/null ; then
|
|
||||||
export GUIENV=1 # set 1 if GUI env.
|
|
||||||
else
|
|
||||||
export GUIENV=0 # set 0 if not GUI env.
|
|
||||||
fi
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
||||||
#!/bin/bash -u
|
|
||||||
|
|
||||||
# shellcheck disable=SC1091
|
|
||||||
# Load configuration parameter
|
|
||||||
source ./config01.sh
|
|
||||||
|
|
||||||
# Load common functions
|
|
||||||
source ../lib/common.sh
|
|
||||||
|
|
||||||
function main() {
|
|
||||||
|
|
||||||
# This is the mount point of the install target.
|
|
||||||
export TARGETMOUNTPOINT="/target"
|
|
||||||
|
|
||||||
# *******************************************************************************
|
|
||||||
# Confirmation before installation
|
|
||||||
# *******************************************************************************
|
|
||||||
|
|
||||||
# parameters for distribution check
|
|
||||||
export DISTRIBUTIONSIGNATURE="ubuntu"
|
|
||||||
export DISTRIBUTIONNAME="Ubuntu"
|
|
||||||
|
|
||||||
# Check whetehr given signature exist or not
|
|
||||||
if ! distribution_check ; then
|
|
||||||
return 1 # with error status
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Common part of the parameter confirmation
|
|
||||||
if ! confirmation ; then
|
|
||||||
return 1 # with error status
|
|
||||||
fi
|
|
||||||
|
|
||||||
# *******************************************************************************
|
|
||||||
# Pre-install stage
|
|
||||||
# *******************************************************************************
|
|
||||||
|
|
||||||
# Common part of the pre-install stage
|
|
||||||
if ! pre_install ; then
|
|
||||||
return 1 # with error status
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# main routine
|
|
||||||
main
|
|
||||||
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
DISK=/dev/sdb
|
|
||||||
|
|
||||||
DISKSIZE=$(blockdev --report ${DISK} | awk /${DISK}/'{print $6}')
|
|
||||||
VOLSIZE=$(lvdisplay --units B /dev/vg_test/anko | awk '/Size/{print $3}')
|
|
||||||
|
|
||||||
echo $DISKSIZE
|
|
||||||
echo $VOLSIZE
|
|
||||||
|
|
||||||
echo "scale=3; $VOLSIZE/$DISKSIZE" | bc
|
|
||||||
|
|
@ -1,28 +0,0 @@
|
||||||
#!/bin/bash -u
|
|
||||||
|
|
||||||
# shellcheck disable=SC1091
|
|
||||||
# Load configuration parameter
|
|
||||||
source ./config01.sh
|
|
||||||
|
|
||||||
# *******************************************************************************
|
|
||||||
# Delete the nwe volume if overwrite install, and close all
|
|
||||||
# *******************************************************************************
|
|
||||||
function util_cleanup(){
|
|
||||||
echo "...Deleting the new logical volume \"${VGNAME}-${LVROOTNAME}\"."
|
|
||||||
lvremove -f /dev/mapper/"${VGNAME}"-"${LVROOTNAME}"
|
|
||||||
|
|
||||||
if [ "${USELVEXT1}" -ne 0 ] ; then # if using extra volume 1
|
|
||||||
# Remove newly created extra volume 1
|
|
||||||
echo "...Deleting the new logical volume \"${VGNAME}-${LVROOTNAME}${LVEXT1SUFFIX}\"."
|
|
||||||
lvremove -f /dev/mapper/"${VGNAME}"-"${LVROOTNAME}${LVEXT1SUFFIX}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "${USELVEXT2}" -ne 0 ] ; then # if using extra volume 2
|
|
||||||
# Remove newly created extra volume 2
|
|
||||||
echo "...Deleting the new logical volume \"${VGNAME}-${LVROOTNAME}${LVEXT2SUFFIX}\"."
|
|
||||||
lvremove -f /dev/mapper/"${VGNAME}"-"${LVROOTNAME}${LVEXT2SUFFIX}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
util_cleanup
|
|
||||||
|
|
@ -1,23 +0,0 @@
|
||||||
#!/bin/bash -u
|
|
||||||
|
|
||||||
# shellcheck disable=SC1091
|
|
||||||
# Load configuration parameter
|
|
||||||
source ./config01.sh
|
|
||||||
|
|
||||||
# *******************************************************************************
|
|
||||||
# Deactivate all LV in the VG and close LUKS volume
|
|
||||||
# *******************************************************************************
|
|
||||||
|
|
||||||
function util_deactivate_and_close(){
|
|
||||||
echo "...Deactivating all logical volumes in volume group \"${VGNAME}\"."
|
|
||||||
vgchange -a n "${VGNAME}"
|
|
||||||
echo "...Closing LUKS volume \"${CRYPTPARTNAME}\"."
|
|
||||||
cryptsetup close "${CRYPTPARTNAME}"
|
|
||||||
cat <<- HEREDOC
|
|
||||||
|
|
||||||
...Installation process terminated..
|
|
||||||
HEREDOC
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
util_deactivate_and_close
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue