Move all to deprecated folder.
This commit is contained in:
56
deprecated/firmware/buildroot/package/openvpn/Config.in
Normal file
56
deprecated/firmware/buildroot/package/openvpn/Config.in
Normal file
@@ -0,0 +1,56 @@
|
||||
config BR2_PACKAGE_OPENVPN
|
||||
bool "openvpn"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
OpenVPN is a full-featured SSL VPN solution which can
|
||||
accomodate a wide range of configurations, including road
|
||||
warrior access, home/office/campus telecommuting, WiFi
|
||||
security, secure branch office linking, and enterprise-scale
|
||||
remote access solutions with load balancing, failover, and
|
||||
fine-grained access-controls.
|
||||
|
||||
http://openvpn.net/
|
||||
|
||||
if BR2_PACKAGE_OPENVPN
|
||||
|
||||
config BR2_PACKAGE_OPENVPN_LZO
|
||||
bool "LZO compression"
|
||||
default y
|
||||
select BR2_PACKAGE_LZO
|
||||
help
|
||||
Enable LZO compression.
|
||||
|
||||
config BR2_PACKAGE_OPENVPN_SMALL
|
||||
bool "Optimize for small size"
|
||||
help
|
||||
Make OpenVPN as small as possible.
|
||||
You loose eurephia, debugging info, help messages and more.
|
||||
It saves around 100 KiB in binary file size.
|
||||
|
||||
config BR2_PACKAGE_OPENVPN_PWSAVE
|
||||
bool "Allow passwords in files"
|
||||
help
|
||||
Allow --askpass and --auth-user-pass passwords to be read
|
||||
from a file.
|
||||
|
||||
choice
|
||||
prompt "Crypto backend"
|
||||
default BR2_PACKAGE_OPENVPN_CRYPTO_OPENSSL
|
||||
help
|
||||
Select the cryptographic library to use.
|
||||
|
||||
config BR2_PACKAGE_OPENVPN_CRYPTO_OPENSSL
|
||||
bool "OpenSSL"
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
help
|
||||
Enable TLS-based key exchange and OpenSSL crypto support.
|
||||
|
||||
config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
|
||||
bool "PolarSSL"
|
||||
select BR2_PACKAGE_POLARSSL
|
||||
help
|
||||
Enable TLS-based key exchange and PolarSSL crypto support.
|
||||
|
||||
endchoice
|
||||
|
||||
endif
|
||||
103
deprecated/firmware/buildroot/package/openvpn/S60openvpn
Executable file
103
deprecated/firmware/buildroot/package/openvpn/S60openvpn
Executable file
@@ -0,0 +1,103 @@
|
||||
#!/bin/sh -e
|
||||
#
|
||||
# Original version by Robert Leslie
|
||||
# <rob@mars.org>, edited by iwj and cs
|
||||
# Modified for openvpn by Alberto Gonzalez Iniesta <agi@agi.as>
|
||||
# Modified for restarting / starting / stopping single tunnels by Richard Mueller <mueller@teamix.net>
|
||||
|
||||
test $DEBIAN_SCRIPT_DEBUG && set -v -x
|
||||
|
||||
DAEMON=/usr/sbin/openvpn
|
||||
CONFIG_DIR=/etc/openvpn
|
||||
test -x $DAEMON || exit 0
|
||||
test -d $CONFIG_DIR || exit 0
|
||||
|
||||
start_vpn () {
|
||||
$DAEMON --daemon --writepid /var/run/openvpn.$NAME.pid \
|
||||
--config $CONFIG_DIR/$NAME.conf --cd $CONFIG_DIR || printf " FAILED->"
|
||||
printf " $NAME"
|
||||
}
|
||||
stop_vpn () {
|
||||
kill `cat $PIDFILE` || true
|
||||
rm $PIDFILE
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
printf "Starting openvpn:"
|
||||
|
||||
if test -z $2 ; then
|
||||
for CONFIG in `cd $CONFIG_DIR; ls *.conf 2> /dev/null`; do
|
||||
NAME=${CONFIG%%.conf}
|
||||
start_vpn
|
||||
done
|
||||
else
|
||||
if test -e $CONFIG_DIR/$2.conf ; then
|
||||
NAME=$2
|
||||
start_vpn
|
||||
else
|
||||
printf " No such VPN: $2"
|
||||
fi
|
||||
fi
|
||||
echo "."
|
||||
|
||||
;;
|
||||
stop)
|
||||
printf "Stopping openvpn:"
|
||||
|
||||
if test -z $2 ; then
|
||||
for PIDFILE in `ls /var/run/openvpn.*.pid 2> /dev/null`; do
|
||||
NAME=`echo $PIDFILE | cut -c18-`
|
||||
NAME=${NAME%%.pid}
|
||||
stop_vpn
|
||||
printf " $NAME"
|
||||
done
|
||||
else
|
||||
if test -e /var/run/openvpn.$2.pid ; then
|
||||
PIDFILE=`ls /var/run/openvpn.$2.pid 2> /dev/null`
|
||||
NAME=`echo $PIDFILE | cut -c18-`
|
||||
NAME=${NAME%%.pid}
|
||||
stop_vpn
|
||||
printf " $NAME"
|
||||
else
|
||||
printf " No such VPN: $2"
|
||||
fi
|
||||
fi
|
||||
echo "."
|
||||
;;
|
||||
# We only 'reload' for running VPNs. New ones will only start with 'start' or 'restart'.
|
||||
reload|force-reload)
|
||||
printf "Reloading openvpn:"
|
||||
for PIDFILE in `ls /var/run/openvpn.*.pid 2> /dev/null`; do
|
||||
NAME=`echo $PIDFILE | cut -c18-`
|
||||
NAME=${NAME%%.pid}
|
||||
# If openvpn if running under a different user than root we'll need to restart
|
||||
if egrep '^( |\t)*user' $CONFIG_DIR/$NAME.conf > /dev/null 2>&1 ; then
|
||||
stop_vpn
|
||||
sleep 1
|
||||
start_vpn
|
||||
printf "(restarted)"
|
||||
else
|
||||
kill -HUP `cat $PIDFILE` || true
|
||||
# start-stop-daemon --stop --signal HUP --quiet --oknodo \
|
||||
# --exec $DAEMON --pidfile $PIDFILE
|
||||
printf " $NAME"
|
||||
fi
|
||||
done
|
||||
echo "."
|
||||
;;
|
||||
|
||||
restart)
|
||||
$0 stop $2
|
||||
sleep 1
|
||||
$0 start $2
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|reload|restart|force-reload}" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
||||
|
||||
# vim:set ai et sts=2 sw=2 tw=0:
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 52f16bef3a02369682f1464fbd2821070c98d0bd993f4c46c764e87375abdcc1 openvpn-2.3.9.tar.xz
|
||||
70
deprecated/firmware/buildroot/package/openvpn/openvpn.mk
Normal file
70
deprecated/firmware/buildroot/package/openvpn/openvpn.mk
Normal file
@@ -0,0 +1,70 @@
|
||||
################################################################################
|
||||
#
|
||||
# openvpn
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPENVPN_VERSION = 2.3.9
|
||||
OPENVPN_SOURCE = openvpn-$(OPENVPN_VERSION).tar.xz
|
||||
OPENVPN_SITE = http://swupdate.openvpn.net/community/releases
|
||||
OPENVPN_DEPENDENCIES = host-pkgconf
|
||||
OPENVPN_LICENSE = GPLv2
|
||||
OPENVPN_LICENSE_FILES = COPYRIGHT.GPL
|
||||
OPENVPN_CONF_OPTS = \
|
||||
--disable-plugin-auth-pam \
|
||||
--enable-iproute2 \
|
||||
$(if $(BR2_STATIC_LIBS),--disable-plugins)
|
||||
OPENVPN_CONF_ENV = IFCONFIG=/sbin/ifconfig \
|
||||
NETSTAT=/bin/netstat \
|
||||
ROUTE=/sbin/route
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENVPN_SMALL),y)
|
||||
OPENVPN_CONF_OPTS += \
|
||||
--enable-small \
|
||||
--disable-plugins \
|
||||
--disable-eurephia
|
||||
endif
|
||||
|
||||
# BusyBox 1.21+ places the ip applet in the "correct" place
|
||||
# but previous versions didn't.
|
||||
ifeq ($(BR2_PACKAGE_IPROUTE2),y)
|
||||
OPENVPN_CONF_ENV += IPROUTE=/sbin/ip
|
||||
else ifeq ($(BR2_BUSYBOX_VERSION_1_19_X)$(BR2_BUSYBOX_VERSION_1_20_X),y)
|
||||
OPENVPN_CONF_ENV += IPROUTE=/bin/ip
|
||||
else
|
||||
OPENVPN_CONF_ENV += IPROUTE=/sbin/ip
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENVPN_LZO),y)
|
||||
OPENVPN_DEPENDENCIES += lzo
|
||||
else
|
||||
OPENVPN_CONF_OPTS += --disable-lzo
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENVPN_PWSAVE),y)
|
||||
OPENVPN_CONF_OPTS += --enable-password-save
|
||||
else
|
||||
OPENVPN_CONF_OPTS += --disable-password-save
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENVPN_CRYPTO_OPENSSL),y)
|
||||
OPENVPN_CONF_OPTS += --with-crypto-library=openssl
|
||||
OPENVPN_DEPENDENCIES += openssl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL),y)
|
||||
OPENVPN_CONF_OPTS += --with-crypto-library=polarssl
|
||||
OPENVPN_DEPENDENCIES += polarssl
|
||||
endif
|
||||
|
||||
define OPENVPN_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -m 755 $(@D)/src/openvpn/openvpn \
|
||||
$(TARGET_DIR)/usr/sbin/openvpn
|
||||
endef
|
||||
|
||||
define OPENVPN_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -m 755 -D package/openvpn/S60openvpn \
|
||||
$(TARGET_DIR)/etc/init.d/S60openvpn
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user