diff --git a/etc/archboot/aarch64-update_installer.conf b/etc/archboot/aarch64-update_installer.conf index 7f7950a85..8bd9ed152 100644 --- a/etc/archboot/aarch64-update_installer.conf +++ b/etc/archboot/aarch64-update_installer.conf @@ -5,7 +5,7 @@ _HOOKS=(cache cache_cleanup firmware firmware_cleanup common_modules block_modules kms base_common base_common_cleanup base base_cleanup filesystems filesystems_cleanup net net_cleanup acpi cpufreq devicemapper hypervisor net_common platform wireless installer_common installer - installer_cleanup clock vconsole motd mdadm lvm2 remote kexec efibootmgr + clock vconsole motd mdadm lvm2 remote kexec efibootmgr pciutils usbutils smartmontools licenses neovim secureboot efivar lshw) # COMPRESSION diff --git a/etc/archboot/x86_64-update_installer.conf b/etc/archboot/x86_64-update_installer.conf index 461411665..167b92799 100644 --- a/etc/archboot/x86_64-update_installer.conf +++ b/etc/archboot/x86_64-update_installer.conf @@ -5,7 +5,7 @@ _HOOKS=(cache cache_cleanup firmware firmware_cleanup common_modules block_modules kms base_common base_common_cleanup base base_cleanup filesystems filesystems_cleanup net net_cleanup acpi cpufreq devicemapper hypervisor net_common dmidecode platform wireless installer_common - installer installer_cleanup clock vconsole motd mdadm lvm2 remote + installer clock vconsole motd mdadm lvm2 remote kexec efibootmgr pciutils usbutils smartmontools licenses neovim secureboot efivar lshw) diff --git a/usr/lib/archboot/cpio/hooks/installer_cleanup b/usr/lib/archboot/cpio/hooks/installer_cleanup deleted file mode 100644 index 74167e2a2..000000000 --- a/usr/lib/archboot/cpio/hooks/installer_cleanup +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env bash -# SPDX-License-Identifier: GPL-3.0-or-later -# Created by Tobias Powalowski - -_run () -{ - ! grep -qw 'archboot' /etc/hostname && return - # save RAM with deleting already copied content - rm -rf /var/cache/pacman/pkg -} - -# vim: set ft=sh ts=4 sw=4 et: