archboot/usr/lib/initcpio/install/arch_chntpw
2013-07-22 17:57:18 +02:00

17 lines
256 B
Bash

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
apps="chntpw reged cpnt"
for i in $apps; do
add_binary $i
done
}
help ()
{
cat<<HELPEOF
This hook includes chntpw on an arch boot image.
HELPEOF
}