archboot/usr/lib/initcpio/install/archboot_base_latest

16 lines
305 B
Text
Raw Normal View History

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
2022-01-31 15:03:27 +01:00
### adding passwd file for correct shell
2021-10-05 16:08:23 +02:00
add_file "/usr/share/archboot/installer_latest/etc/passwd" "/etc/passwd"
}
help ()
{
cat <<HELPEOF
2022-01-31 10:49:49 +01:00
This hook sets up stripped down base for for latest image.
HELPEOF
}