diff options
author | tnut <tnut at nutyx dot com> | 2012-04-03 21:50:09 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2012-04-03 21:50:09 +0200 |
commit | c998c260397c74c404afb5638512127d49d82202 (patch) | |
tree | 3710878cdb102bc8f0e652b6463ed63a3a9dedca /dhcp/Pkgfile | |
parent | bde3e30c3e4533a208c135a95ce58c0c354de454 (diff) | |
download | nutyx-pakxe-c998c260397c74c404afb5638512127d49d82202.tar.gz nutyx-pakxe-c998c260397c74c404afb5638512127d49d82202.tar.bz2 nutyx-pakxe-c998c260397c74c404afb5638512127d49d82202.tar.xz nutyx-pakxe-c998c260397c74c404afb5638512127d49d82202.zip |
dhcp est un service
Diffstat (limited to 'dhcp/Pkgfile')
-rw-r--r-- | dhcp/Pkgfile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dhcp/Pkgfile b/dhcp/Pkgfile new file mode 100644 index 000000000..d919b8af4 --- /dev/null +++ b/dhcp/Pkgfile @@ -0,0 +1,47 @@ +# Description: Serveur DHCP permettant de fournir une addresse dynamique +# URL: http://gd.tuwien.ac.at/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: net-tools +# Run on: net-tools + +name=dhcp +version=3.1.3 +release=2 +source=(ftp://ftp.isc.org/isc/$name/$name-$version.tar.gz\ + ) +build() { + source /etc/blfs-bootscripts +# wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2 + wget http://nutyx.meticul.eu/files/patchs/aaabasicfs/blfs-bootscripts-$scriptsversion.tar.bz2 + tar xvf $scripts-$scriptsversion.tar.bz2 + cd $name-$version + ./configure + make + mkdir -p $PKG/var/state/dhcp + mkdir -p $PKG/etc + touch $PKG/var/state/dhcp/dhcpd.leases + + make DESTDIR=$PKG INCDIR=/usr/include LIBDIR=/usr/lib install + mkdir -p $PKG/usr/share + mv $PKG/usr/man $PKG/usr/share/man + # Installation of the script + cd ../$scripts-$scriptsversion + make DESTDIR=$PKG install-$name + + + # Install the script file +cat > $PKG/etc/dhcpd.conf << "EOF" +#All the addresses should be adjust to meet your circumstance +default-lease-time 72000; +max-lease-time 144000; +ddns-update-style ad-hoc; + +subnet <192.168.5.0> netmask <255.255.255.0> { + range <192.168.5.10> <192.168.5.240>; + option broadcast-address <192.168.5.255>; + option routers <192.168.5.1>; +} +EOF +} + |