archboot/usr/lib/initcpio/install/archboot_dnsmasq

17 lines
318 B
Text
Raw Normal View History

#!/usr/bin/env bash
2011-08-30 15:19:35 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
map add_binary dnsmasq dhcp_lease_time dhcp_release dhcp_release6
2012-08-15 20:41:15 +02:00
add_file "/etc/dnsmasq.conf"
2022-03-14 21:32:33 +01:00
map add_dir "/var/db" "/var/lib/misc"
2011-08-30 15:19:35 +02:00
}
help ()
{
cat<<HELPEOF
2021-10-04 11:13:50 +02:00
This hook includes dnsmasq on an archboot image.
2011-08-30 15:19:35 +02:00
HELPEOF
}