Run chroot stage with /var/lib/dpkg mounted as a tmpfs
Idea from Thomas Lange and FAI. Speedup in my testcase (standard image) is 3m00 => 2m50, probably much better improvements for the desktop image clients.
This commit is contained in:
parent
a0fcfedb0b
commit
ff9b1446b4
|
@ -34,6 +34,7 @@ lh chroot_selinuxfs install ${*}
|
|||
lh chroot_sysfs install ${*}
|
||||
lh chroot_debianchroot install ${*}
|
||||
lh chroot_dpkg install ${*}
|
||||
lh chroot_dpkg_tmpfs install ${*}
|
||||
lh chroot_sysv-rc install ${*}
|
||||
lh chroot_upstart install ${*}
|
||||
lh chroot_hosts install ${*}
|
||||
|
@ -71,6 +72,7 @@ lh chroot_resolv remove ${*}
|
|||
lh chroot_hosts remove ${*}
|
||||
lh chroot_sysv-rc remove ${*}
|
||||
lh chroot_upstart remove ${*}
|
||||
lh chroot_dpkg_tmpfs remove ${*}
|
||||
lh chroot_dpkg remove ${*}
|
||||
lh chroot_debianchroot remove ${*}
|
||||
lh chroot_sysfs remove ${*}
|
||||
|
|
|
@ -0,0 +1,74 @@
|
|||
#!/bin/sh
|
||||
|
||||
# lh_chroot_dpkg_tmpfs(1) - manage tmpfs for /var/lib/dpkg
|
||||
# Copyright (C) 2006-2010 Daniel Baumann <daniel@debian.org>
|
||||
#
|
||||
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
||||
# This is free software, and you are welcome to redistribute it
|
||||
# under certain conditions; see COPYING for details.
|
||||
|
||||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'manage /var/lib/dpkg')"
|
||||
HELP=""
|
||||
USAGE="${PROGRAM} {install|remove} [--force]"
|
||||
|
||||
Arguments "${@}"
|
||||
|
||||
# Reading configuration files
|
||||
Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
|
||||
Set_defaults
|
||||
|
||||
# Requiring stage file
|
||||
Require_stagefile .stage/config .stage/bootstrap
|
||||
|
||||
case "${1}" in
|
||||
install)
|
||||
Echo_message "Configuring tmpfs for /var/lib/dpkg"
|
||||
|
||||
# Checking stage file
|
||||
Check_stagefile .stage/chroot_dpkg_tmpfs
|
||||
|
||||
# Checking lock file
|
||||
Check_lockfile .lock
|
||||
|
||||
# Creating lock file
|
||||
Create_lockfile .lock
|
||||
|
||||
mv chroot/var/lib/dpkg chroot/var/lib/dpkg.tmp
|
||||
mkdir chroot/var/lib/dpkg
|
||||
mount -t tmpfs tmpfs chroot/var/lib/dpkg
|
||||
mv chroot/var/lib/dpkg.tmp/* chroot/var/lib/dpkg
|
||||
rm -rf chroot/var/lib/dpkg.tmp
|
||||
|
||||
# Creating stage file
|
||||
Create_stagefile .stage/chroot_dpkg_tmpfs
|
||||
;;
|
||||
|
||||
remove)
|
||||
Echo_message "Deconfiguring tmpfs for /var/lib/dpkg"
|
||||
|
||||
# Checking lock file
|
||||
Check_lockfile .lock
|
||||
|
||||
# Creating lock file
|
||||
Create_lockfile .lock
|
||||
|
||||
mkdir -p chroot/var/lib/dpkg.tmp
|
||||
mv chroot/var/lib/dpkg/* chroot/var/lib/dpkg.tmp
|
||||
umount chroot/var/lib/dpkg
|
||||
rm -rf chroot/var/lib/dpkg
|
||||
mv chroot/var/lib/dpkg.tmp chroot/var/lib/dpkg
|
||||
|
||||
# Removing stage file
|
||||
rm -f .stage/chroot_dpkg_tmpfs
|
||||
;;
|
||||
|
||||
*)
|
||||
Usage
|
||||
;;
|
||||
esac
|
|
@ -79,6 +79,7 @@ do
|
|||
${LH_ROOT_COMMAND} umount -f chroot/dev/shm > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/dev/pts > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/dev > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/var/lib/dpkg > /dev/null 2>&1 || true
|
||||
|
||||
${LH_ROOT_COMMAND} umount -f chroot/binary.tmp > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/dev.tmp/pts > /dev/null 2>&1 || true
|
||||
|
|
Loading…
Reference in New Issue