Bring head revision up to date with cabal (try #3)
This commit is contained in:
parent
d3ea434b36
commit
30df5e95db
35 changed files with 3091 additions and 2267 deletions
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
|||
tinc (1.0pre3-0.1) unstable; urgency=low
|
||||
|
||||
* upgraded to upstream version 1.0pre3
|
||||
|
||||
-- Ivo Timmermans <itimmermans@bigfoot.com> Sun, 25 Jun 2000 00:00:00 +0200
|
||||
|
||||
tinc (1.0pre2-1) unstable; urgency=low
|
||||
|
||||
* postinst creates a file /etc/tinc/nets.boot, containing all networks
|
||||
|
|
4
debian/control
vendored
4
debian/control
vendored
|
@ -3,11 +3,11 @@ Section: non-US/main
|
|||
Priority: optional
|
||||
Maintainer: Ivo Timmermans <itimmermans@bigfoot.com>
|
||||
Standards-Version: 3.0.1
|
||||
Build-Depends: libc6-dev, libgmp2-dev
|
||||
Build-Depends: libc6-dev, libssl095a-dev, autoconf (>= 2.12), automake,
|
||||
|
||||
Package: tinc
|
||||
Architecture: i386
|
||||
Depends: ${shlibs:Depends}, libgmp2, perl5
|
||||
Depends: ${shlibs:Depends}, (libssl095a|libssl09), perl5
|
||||
Description: Virtual Private Network daemon
|
||||
tinc is a daemon with which you can create a virtual private network
|
||||
(VPN). One daemon can handle multiple connections, so you can
|
||||
|
|
7
debian/init.d
vendored
7
debian/init.d
vendored
|
@ -1,7 +1,7 @@
|
|||
#! /usr/bin/perl -w
|
||||
#
|
||||
# System startup script for tinc
|
||||
# $Id: init.d,v 1.14 2000/06/01 20:21:27 guus Exp $
|
||||
# $Id: init.d,v 1.15 2000/10/18 20:12:06 zarq Exp $
|
||||
#
|
||||
# Based on Lubomir Bulej's Redhat init script.
|
||||
#
|
||||
|
@ -68,6 +68,7 @@ sub vpn_load {
|
|||
chomp($VPN);
|
||||
} elsif ( /^[ ]*VpnMask[ =]+([^ \#]+)/i ) {
|
||||
$VPNMASK=$1;
|
||||
chomp($VPNMASK);
|
||||
}
|
||||
}
|
||||
if(!defined($DEV)) {
|
||||
|
@ -108,10 +109,8 @@ sub vpn_load {
|
|||
|
||||
if(!defined($VPNMASK)) {
|
||||
$VPNMASK = $MSK;
|
||||
$VPNMASK = join(".", unpack('C4', $VPNMASK));
|
||||
}
|
||||
|
||||
$VPNMASK = pack('C4', split(/\./, $VPNMASK));
|
||||
$VPNMASK = join(".", unpack('C4', $VPNMASK));
|
||||
$ADR = join(".", unpack('C4', $ADR));
|
||||
$MSK = join(".", unpack('C4', $MSK));
|
||||
|
||||
|
|
2
debian/rules
vendored
2
debian/rules
vendored
|
@ -32,7 +32,7 @@ install: build
|
|||
dh_clean -k
|
||||
dh_installdirs
|
||||
|
||||
$(MAKE) install prefix=`pwd`/debian/tmp/usr
|
||||
$(MAKE) install DESTDIR=`pwd`/debian/tmp
|
||||
mkdir -p `pwd`/debian/tmp/etc/tinc/example
|
||||
cp doc/tinc.conf.sample `pwd`/debian/tmp/etc/tinc/example/tinc.conf
|
||||
ln -s /usr/share/doc/tinc/README.Debian `pwd`/debian/tmp/etc/tinc/example/README
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue