archboot/usr/bin/archboot-create-container.sh

85 lines
2.9 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
# created by Tobias Powalowski <tpowa@archlinux.org>
2021-09-23 09:22:27 +02:00
_PWD="$(pwd)"
_BASENAME="$(basename "${0}")"
2021-09-23 09:14:28 +02:00
_CACHEDIR=""$1"/var/cache/pacman/pkg"
_CLEANUP_CACHE=""
_SAVE_RAM=""
_LINUX_FIRMWARE=""
2021-09-25 14:02:02 +02:00
_DIR=""
2021-09-23 09:14:28 +02:00
usage () {
echo "CREATE ARCHBOOT CONTAINER"
echo "-----------------------------"
echo "This will create an archboot container for an archboot image."
echo "Usage: ${_BASENAME} <directory> <options>"
echo " Options:"
echo " -cc Cleanup container eg. remove manpages, includes ..."
echo " -cp Cleanup container package cache"
echo " -lf add linux-firmware to container"
echo " -alf add archboot-linux-firmware to container"
exit 0
}
[[ -z "${1}" ]] && usage
2021-09-25 14:02:02 +02:00
_DIR="$1"
while [ $# -gt 0 ]; do
2021-09-25 14:19:47 +02:00
case ${1} in
-cc|--cc) _SAVE_RAM="1" ;;
-cp|--cp) _CLEANUP_CACHE="1" ;;
-lf|--lf) _LINUX_FIRMWARE="linux-firmware" ;;
-alf|-alf) _LINUX_FIRMWARE="archboot-linux-firmware" ;;
esac
shift
done
### check for root
if ! [[ ${UID} -eq 0 ]]; then
echo "ERROR: Please run as root user!"
exit 1
fi
2021-09-23 09:14:28 +02:00
2021-09-23 09:14:28 +02:00
# prepare pacman dirs
2021-09-25 14:02:02 +02:00
mkdir -p "${_DIR}"/var/lib/pacman
2021-09-23 09:14:28 +02:00
mkdir -p "${_CACHEDIR}"
# install archboot
2021-09-25 14:02:02 +02:00
pacman --root "${_DIR}" -Sy base archboot --noconfirm --cachedir "${_PWD}"/"${_CACHEDIR}"
# generate locales
2021-09-25 14:02:02 +02:00
systemd-nspawn -D "${_DIR}" /bin/bash -c "echo 'en_US ISO-8859-1' >> /etc/locale.gen"
systemd-nspawn -D "${_DIR}" /bin/bash -c "echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen"
systemd-nspawn -D "${_DIR}" locale-gen
# generate pacman keyring
2021-09-25 14:02:02 +02:00
systemd-nspawn -D "${_DIR}" pacman-key --init
systemd-nspawn -D "${_DIR}" pacman-key --populate archlinux
# copy local mirrorlist to container
cp /etc/pacman.d/mirrorlist "${_DIR}"/etc/pacman.d/mirrorlist
# only copy from archboot pacman.conf, else use default file
[[ "$(cat /etc/hostname)" == "archboot" ]] && cp /etc/pacman.conf "${_DIR}"/etc/pacman.conf
# disable checkspace option in pacman.conf, to allow to install packages in environment
sed -i -e 's:^CheckSpace:#CheckSpace:g' "${_DIR}"/etc/pacman.conf
2021-09-22 15:00:43 +02:00
# enable parallel downloads
sed -i -e 's:^#ParallelDownloads:ParallelDownloads:g' "${_DIR}"/etc/pacman.conf
# enable [testing] if enabled in host
2021-09-27 11:59:21 +02:00
if [[ "$(grep "^\[testing" /etc/pacman.conf)" ]]; then
sed -i -e '/^#\[testing\]/ { n ; s/^#// }' ${_DIR}/etc/pacman.conf
sed -i -e '/^#\[community-testing\]/ { n ; s/^#// }' ${_DIR}/etc/pacman.conf
sed -i -e 's:^#\[testing\]:\[testing\]:g' -e 's:^#\[community-testing\]:\[community-testing\]:g' ${_DIR}/etc/pacman.conf
fi
# reinstall kernel to get files in /boot and firmware package
2021-09-25 14:02:02 +02:00
systemd-nspawn -D "${_DIR}" pacman -Sy linux --noconfirm
2021-09-25 14:19:47 +02:00
[[ ! -z ${_LINUX_FIRMWARE} ]] && systemd-nspawn -D "${_DIR}" pacman -Sy "${_LINUX_FIRMWARE}" --noconfirm
if [[ "${_SAVE_RAM}" == "1" ]]; then
# clean container from not needed files
2021-09-25 14:02:02 +02:00
rm -r "${_DIR}"/usr/include
rm -r "${_DIR}"/usr/share/{man,doc}
fi
2021-09-24 09:34:07 +02:00
if [[ "${_CLEANUP_CACHE}" == "1" ]]; then
# clean cache
rm -r "${_DIR}"/var/cache/pacman
fi