archboot/usr/lib/initcpio/install/archboot_installer_latest

17 lines
484 B
Text
Raw Normal View History

2021-10-04 19:52:58 +02:00
#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
add_file "/usr/bin/archboot-update-installer.sh" "/usr/bin/update-installer.sh"
2022-01-08 09:51:29 +01:00
add_file "/usr/bin/archboot-$(uname -m)-create-container.sh"
2021-10-05 16:08:23 +02:00
add_file "/usr/share/archboot/installer_latest/etc/profile.d/latest-installer.sh" "/etc/profile.d/latest-installer.sh"
2021-10-04 19:52:58 +02:00
}
help ()
{
cat<<HELPEOF
This hook reboots the latest archboot installer with package cache on an archboot image.
HELPEOF
}