archboot/usr/lib/initcpio/install/archboot_nmap

20 lines
336 B
Text
Raw Normal View History

#!/usr/bin/env bash
2011-08-30 17:14:16 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
2021-08-08 18:57:21 +02:00
apps="nmap ncat nping"
2012-05-27 12:04:03 +02:00
for i in $apps; do
add_binary "$i"
done
2011-08-31 16:51:00 +02:00
add_full_dir "/usr/share/nmap"
2011-08-30 17:15:10 +02:00
add_file "/usr/share/licenses/nmap/LICENSE"
2011-08-30 17:14:16 +02:00
}
help ()
{
cat<<HELPEOF
2021-10-04 11:13:50 +02:00
This hook includes nmap on an archboot image.
2011-08-30 17:14:16 +02:00
HELPEOF
}