source: npl/internetserver/dhcp/dhcp-remove-bind-tarball.sh @ 21dd3b8

gcc484perl-5.22
Last change on this file since 21dd3b8 was ebc5ae5, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

upgraded dhcpd to 4.3.6 for better ipv6 support

  • Property mode set to 100644
File size: 1.6 KB
Line 
1#!/bin/sh
2
3# Copyright 2011  Patrick J. Volkerding, Sebeka, MN, USA
4# All rights reserved.
5#
6# Redistribution and use of this script, with or without modification, is
7# permitted provided that the following conditions are met:
8#
9# 1. Redistributions of this script must retain the above copyright
10#    notice, this list of conditions and the following disclaimer.
11#
12#  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
13#  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
14#  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
15#  EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
16#  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
17#  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
18#  OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
19#  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
20#  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
21#  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
23
24PKGNAM=dhcp
25VERSION=${VERSION:-4.2.1-P1}
26BUILD=${BUILD:-1}
27
28# This is not yet used, but eventually we would like to be able to purge
29# the bundled BIND and use the system's instead.  Maybe wishful thinking.
30
31CWD=$(pwd)
32TMP=${TMP:-/tmp}
33
34cd $TMP
35rm -rf dhcp-$VERSION
36tar xvf $CWD/dhcp-$VERSION.tar.?z* || exit 1
37cd dhcp-$VERSION || exit 1
38
39# good "bob" why? ...
40rm -rf bind/*
41
42# Generate a new .xz compressed tarball in /tmp:
43cd $TMP
44rm -f dhcp-$VERSION.tar*
45tar cf dhcp-$VERSION.tar dhcp-$VERSION
46xz -9 dhcp-$VERSION.tar
47
48echo "$TMP/dhcp-$VERSION.tar.xz created"
49
Note: See TracBrowser for help on using the repository browser.