archboot/usr/lib/initcpio/install/arch_chntpw

18 lines
256 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
This hook includes chntpw on an arch boot image.
HELPEOF
}