commit 7548d668c060dc66d7cb04cd6902892b23629ff0 Author: kueller Date: Sat May 3 16:59:04 2008 +0000 V961 Tree Umbau git-svn-id: svn://svn.compuextreme.de/Viitor/V961/Viitor_openvpn@4297 504e572c-2e33-0410-9681-be2bf7408885 diff --git a/etc/init.d/openvpn b/etc/init.d/openvpn new file mode 100755 index 0000000..6ed684e --- /dev/null +++ b/etc/init.d/openvpn @@ -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 + diff --git a/init/genpkg b/init/genpkg new file mode 100644 index 0000000..17410d3 --- /dev/null +++ b/init/genpkg @@ -0,0 +1,69 @@ +#!/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/