archboot/usr/lib/initcpio/install/archboot_chntpw

18 lines
255 B
Text
Raw Normal View History

#!/usr/bin/env bash
2010-09-27 18:43:26 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2010-09-27 18:43:26 +02:00
{
2013-05-22 09:37:30 +02:00
apps="chntpw reged cpnt"
2012-05-26 11:50:43 +02:00
for i in $apps; do
add_binary $i
done
2010-09-27 18:43:26 +02:00
}
help ()
{
cat<<HELPEOF
2021-10-04 11:13:50 +02:00
This hook includes chntpw on an archboot image.
2010-09-27 18:43:26 +02:00
HELPEOF
}