remove installer_cleanup

This commit is contained in:
Tobias Powalowski 2023-10-16 08:34:10 +02:00
parent 98eb9ab21a
commit e146202ea5
3 changed files with 2 additions and 14 deletions

View file

@ -5,7 +5,7 @@ _HOOKS=(cache cache_cleanup firmware firmware_cleanup common_modules
block_modules kms base_common base_common_cleanup base base_cleanup block_modules kms base_common base_common_cleanup base base_cleanup
filesystems filesystems_cleanup net net_cleanup acpi cpufreq devicemapper filesystems filesystems_cleanup net net_cleanup acpi cpufreq devicemapper
hypervisor net_common platform wireless installer_common installer 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) pciutils usbutils smartmontools licenses neovim secureboot efivar lshw)
# COMPRESSION # COMPRESSION

View file

@ -5,7 +5,7 @@ _HOOKS=(cache cache_cleanup firmware firmware_cleanup common_modules
block_modules kms base_common base_common_cleanup base base_cleanup block_modules kms base_common base_common_cleanup base base_cleanup
filesystems filesystems_cleanup net net_cleanup acpi cpufreq devicemapper filesystems filesystems_cleanup net net_cleanup acpi cpufreq devicemapper
hypervisor net_common dmidecode platform wireless installer_common 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 kexec efibootmgr pciutils usbutils smartmontools licenses neovim
secureboot efivar lshw) secureboot efivar lshw)

View file

@ -1,12 +0,0 @@
#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-3.0-or-later
# Created by Tobias Powalowski <tpowa@archlinux.org>
_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: