basestrap: clean up code

This commit is contained in:
udeved 2017-06-06 23:29:04 +02:00
parent 9c8cca5997
commit e3cd02acb0
3 changed files with 1 additions and 23 deletions

View file

@ -103,8 +103,6 @@ if ! pacman -r "$newroot" -Sy "${pacman_args[@]}"; then
die 'Failed to install packages to new root'
fi
# set_branch "$newroot" "${branch}"
if ${copykeyring};then
copy_keyring "$newroot"
fi

View file

@ -44,11 +44,6 @@ subvolume_delete_recursive() {
return 0
}
set_branch(){
local mnt="$1" branch="$2"
sed -e "s|^.*Branch = .*|Branch = $branch|" -i $mnt/etc/pacman-mirrors.conf
}
set_locale(){
local mnt="$1"
if [[ ! -f "$mnt/etc/locale.gen.bak" ]] && [[ ! -f "$mnt/etc/locale.conf.bak" ]];then

View file

@ -266,13 +266,6 @@ gen_iso_fn(){
echo $name
}
# reset_pac_conf(){
# local fs="$1"
# info "Restoring [%s/etc/pacman.conf] ..." "$fs"
# -e "s|^.*#CheckSpace|CheckSpace|" \
# -i "$fs/etc/pacman.conf"
# }
copy_overlay(){
local src="$1" dest="$2"
if [[ -e "$src" ]];then
@ -293,8 +286,6 @@ make_image_root() {
copy_overlay "${root_overlay}" "${rootfs}"
# reset_pac_conf "${rootfs}"
configure_lsb "${rootfs}"
clean_up_image "${rootfs}"
@ -316,8 +307,6 @@ make_image_desktop() {
copy_overlay "${desktop_overlay}" "${desktopfs}"
# reset_pac_conf "${desktopfs}"
umount_fs
clean_up_image "${desktopfs}"
@ -340,7 +329,7 @@ make_image_live() {
configure_live_image "${livefs}"
# reset_pac_conf "${livefs}"
pacman -Qr "${livefs}" > ${iso_dir}/$(gen_iso_fn)-pkgs.txt
umount_fs
@ -359,8 +348,6 @@ make_image_mhwd() {
mount_fs "${mhwdfs}" "${work_dir}" "${desktop_list}"
# reset_pac_conf "${mhwdfs}"
copy_from_cache "${mhwdfs}" "${packages[@]}"
if [[ -n "${packages_cleanup[@]}" ]]; then
@ -392,8 +379,6 @@ make_image_boot() {
mount_fs "${bootfs}" "${work_dir}" "${desktop_list}"
pacman -Qr "${bootfs}" > ${iso_dir}/$(gen_iso_fn)-pkgs.txt
prepare_initcpio "${bootfs}"
prepare_initramfs "${bootfs}"