From 897ffafa182b99f063976b0d422bfe93f9cc83c8 Mon Sep 17 00:00:00 2001 From: kueller Date: Mon, 3 Jan 2011 10:48:06 +0000 Subject: [PATCH] Neue Version V963 git-svn-id: svn://svn.compuextreme.de/Viitor/V963/Viitor_openvpn@5933 504e572c-2e33-0410-9681-be2bf7408885 --- etc/init/openvpn-down.conf | 17 ++++++++++++ etc/init/openvpn-up.conf | 28 ++++++++++++++++++++ etc/init/openvpn.conf | 29 +++++++++++++++++++++ init/genpkg | 53 ++++++++++++++++++++++++++++++++++++++ usr/sbin/tunneltest | 34 ++++++++++++++++++++++++ 5 files changed, 161 insertions(+) create mode 100644 etc/init/openvpn-down.conf create mode 100644 etc/init/openvpn-up.conf create mode 100644 etc/init/openvpn.conf create mode 100644 init/genpkg create mode 100755 usr/sbin/tunneltest diff --git a/etc/init/openvpn-down.conf b/etc/init/openvpn-down.conf new file mode 100644 index 0000000..dc4891c --- /dev/null +++ b/etc/init/openvpn-down.conf @@ -0,0 +1,17 @@ +description "openvpn daemons startup" +author "Michael Freitag " +version 1.0 +emits none special + +stop on runlevel [016] + +console none + +exec pkill -f "openvpn --config" + +post-stop script + rmmod tun + if [ -f /dev/net/tun ]; then + rm /dev/net/tun + fi +end script diff --git a/etc/init/openvpn-up.conf b/etc/init/openvpn-up.conf new file mode 100644 index 0000000..1cdbc0d --- /dev/null +++ b/etc/init/openvpn-up.conf @@ -0,0 +1,28 @@ +description "openvpn daemons startup" +author "Michael Freitag " +version 1.0 +emits none special + +start on (runlevel [2345] and (started rpc)) + +console none + +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 + + if [ ! -f /etc/sysconfig/net/openvpn/default.key ]; then + openvpn --genkey --secret /etc/sysconfig/net/openvpn/default.key + fi +end script + +script + 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 & + done +end script diff --git a/etc/init/openvpn.conf b/etc/init/openvpn.conf new file mode 100644 index 0000000..3e8e0dd --- /dev/null +++ b/etc/init/openvpn.conf @@ -0,0 +1,29 @@ +description "openvpn daemons startup" +author "Michael Freitag " +version 1.0 +emits none special + +start on (runlevel [2345] and (started rpc)) +stop on runlevel [016] + +console none + +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 + + if [ ! -f /etc/sysconfig/net/openvpn/default.key ]; then + openvpn --genkey --secret /etc/sysconfig/net/openvpn/default.key + fi +end script + +script + 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 & + done +end script diff --git a/init/genpkg b/init/genpkg new file mode 100644 index 0000000..3c11b3b --- /dev/null +++ b/init/genpkg @@ -0,0 +1,53 @@ +#!/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: /Data/cvs/ViitorMake/templates/Script.tem +plate,v $ +# +#(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. +# +#Script: +# +#Letzte Änderung von: $Author$ +#Datum der letzten Änderung: $Date$ +#Version der Datei: $Revision$ +# +#$Log$ +#Revision 1.5 2006/09/07 08:40:28 segler +#/usr/sbin/tunneltest added +# +#Revision 1.4 2006/04/05 15:51:16 segler +#linksource /etc/init.d/