ISO/archiso/initcpio/hooks/archiso_shutdown

11 lines
155 B
Plaintext
Raw Normal View History

#!/bin/ash
#
# SPDX-License-Identifier: GPL-3.0-or-later
run_cleanuphook() {
rm -rf /usr/lib/modules
cp -ax / /run/initramfs
}
# vim: set ft=sh: