Compare commits

...

No commits in common. "v963" and "v961" have entirely different histories.
v963 ... v961

5 changed files with 114 additions and 55 deletions

98
etc/init.d/openvpn Executable file
View File

@ -0,0 +1,98 @@
#!/bin/bash
#Framework, welches ein komplettes Linux System aus den Sourcen erstellt
#dieses Framework wird im CVS Repository
#:pserver:cvs.compuextreme.de:/Data/cvs zur Verfügung gestellt
#
#Lage dieser Datei im Archiv: $Source$
#
#(c) 2003 Harald Kueller, Germany
#This program is free software; you can redistribute it and/or
#modify ist under the terms of the GNU General Public License
#as published by the Free Software Foundation; either version
#2 of the License, or (at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#See the GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program; if not write to the Free Software Foundation,
#Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#InitScript zum Start des Daemons: openpvn
#
#Letzte Änderung von: $Author$
#Datum der letzten Änderung: $Date$
#Version der Datei: $Revision$
#
#$Log$
#Revision 1.2 2006/03/14 20:28:08 segler
#Pfad /etc/sysconfig/net/openvpn korrigiert, Deviceanlegen geht nach /dev/null
#
#Revision 1.1.1.1 2006/03/14 18:57:25 segler
#Environment for openvpn
#
#Revision 1.2 2006/03/14 18:40:25 segler
#Diverse Änderungen in der Filestruktur
#
#
export PATH=$PATH:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
source /etc/init.d/functions
case "$1" in
start)
echo -n "loading tun device driver"
modprobe tun
evaluate_retval
echo -n "Installing tun/tab Device Files"
( if [ ! -d /dev/net ]; then
mkdir /dev/net
fi
rm -f /dev/net/tun &&
mknod /dev/net/tun c 10 200 ) >/dev/null 2>/dev/null
evaluate_retval
if [ ! -f /etc/sysconfig/net/openvpn/default.key ]; then
echo "Generating static key to share in /etc/sysconfig/net/openvpn/default.key"
openvpn --genkey --secret /etc/sysconfig/net/openvpn/default.key
fi
echo "Starting openvpn for"
cd /etc/sysconfig/net/openvpn
for CONFIG in `ls *.config`; do
echo -n "..."$CONFIG | sed -e "s/.config//g"
openvpn --config /etc/sysconfig/net/openvpn/$CONFIG &
evaluate_retval
done
;;
stop)
echo -n "Stopping openvpn"
pkill openvpn
evaluate_retval
echo -n "unloading tun driver"
rmmod tun
evaluate_retval
echo -n "Removing device files"
if [ -f /dev/net/tun ]; then
rm /dev/net/tun
fi
evaluate_retval
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac

View File

@ -47,7 +47,23 @@ plate,v $
WDIR=`pwd`
mkdir -p etc/sysconfig/net/openvpn
cd etc/init.d
chmod 755 openvpn
mkdir rc{0,1,2,3,4,5,6}.d
for i in 0 1 6; do
cd rc$i.d
ln -s /etc/init.d/openvpn K75openvpn
cd ..
done
for i in 2 3 4 5; do
cd rc$i.d
ln -s /etc/init.d/openvpn S13openvpn
cd ..
done
cd $WDIR
chmod 755 usr/sbin/tunneltest
~

View File

@ -1,15 +0,0 @@
Initscripts for openvpn
Server:
copy openvpn-server.conf to /etc/init
Be shure to have server.conf in /etc/sysconfig/net/openvpn
ready.
Client:
copy openserver-client-..servername...conf to /etc/init and replace ..servername.. by the servername
example: cp openserver-client-..servername...conf /etc/init/openserver-client-deepspace.conf
edit the copied file and replace <servername> by the servername.
Be shure to have the config-file
client-<servername>.conf in /etc/sysconfig/net/openvpn
ready.

View File

@ -1,20 +0,0 @@
description "openvpn daemons startup"
author "Michael Freitag <Michael.Freitag@freitag-it.de>"
version 1.1
emits none special
start on (runlevel [2345] and (started rpc))
stop on runlevel [016]
console none
chdir /etc/sysconfig/net/openvpn/
pre-start script
modprobe tun
if [ ! -d /dev/net ]; then
mkdir /dev/net
fi
rm -f /dev/net/tun && mknod /dev/net/tun c 10 200
end script
exec /usr/sbin/openvpn --config client-<SERVERNAME>.conf

View File

@ -1,20 +0,0 @@
description "openvpn daemons startup"
author "Michael Freitag <Michael.Freitag@freitag-it.de>"
version 1.1
emits none special
start on (runlevel [2345] and (started rpc))
stop on runlevel [016]
console none
chdir /etc/sysconfig/net/openvpn
pre-start script
modprobe tun
if [ ! -d /dev/net ]; then
mkdir /dev/net
fi
rm -f /dev/net/tun && mknod /dev/net/tun c 10 200
end script
exec openvpn --config server.conf