[Pkg-swan-devel] Bug#861037: [PATCH 11/12] Enabled bypass-lan, files, and forecast plugins
Gerald Turner
gturner at unzane.com
Sun Apr 23 22:48:35 UTC 2017
---
debian/control | 4 ++++
debian/libcharon-extra-plugins.install | 6 ++++++
debian/libstrongswan-extra-plugins.install | 3 +++
debian/rules | 3 +++
4 files changed, 16 insertions(+)
diff --git a/debian/control b/debian/control
index b807870d..54fb6cde 100644
--- a/debian/control
+++ b/debian/control
@@ -147,6 +147,7 @@ Description: strongSwan utility and crypto library (extra plugins)
- cmac (CMAC cipher mode wrapper)
- ctr (CTR cipher mode wrapper)
- curl (libcurl based HTTP/FTP fetcher)
+ - files (Fetcher for local file:// URIs)
- gcrypt (Crypto backend based on libgcrypt, provides
RSA/DH/ciphers/hashers/rng)
- ldap (LDAP fetching plugin based on libldap)
@@ -177,6 +178,8 @@ Description: strongSwan charon library (extra plugins)
- addrblock (Narrow traffic selectors to RFC 3779 address blocks in X.509
certificates)
- attr-sql (Provides IKE attributes read from a database to peers)
+ - bypass-lan (Automatically installs and updates bypass policies for locally
+ attached subnets)
- certexpire (Export expiration dates of used certificates)
- dnscert (Provides authentication via CERT RRs protected by DNSSEC)
- eap-aka (Generic EAP-AKA protocol handler using different backends)
@@ -192,6 +195,7 @@ Description: strongSwan charon library (extra plugins)
- eap-tnc (EAP-TNC protocol handler, Trusted Network Connect in a TLS tunnel)
- eap-ttls (EAP-TTLS protocol handler, wraps other EAP methods securely)
- error-notify (Notification about errors via UNIX socket)
+ - forecast (Multicast and broadcast forwarding plugin)
- ha (High-Availability clustering)
- ipseckey (Provides authentication via IPSECKEY RRs protected by DNSSEC)
- led (Let Linux LED subsystem LEDs blink on IKE activity)
diff --git a/debian/libcharon-extra-plugins.install b/debian/libcharon-extra-plugins.install
index d2535506..ca00b91b 100644
--- a/debian/libcharon-extra-plugins.install
+++ b/debian/libcharon-extra-plugins.install
@@ -1,10 +1,12 @@
# libcharon plugins
usr/lib/ipsec/plugins/libstrongswan-addrblock.so
usr/lib/ipsec/plugins/libstrongswan-attr-sql.so
+usr/lib/ipsec/plugins/libstrongswan-bypass-lan.so
usr/lib/ipsec/plugins/libstrongswan-certexpire.so
usr/lib/ipsec/plugins/libstrongswan-dnscert.so
usr/lib/ipsec/plugins/libstrongswan-eap*.so
usr/lib/ipsec/plugins/libstrongswan-error-notify.so
+usr/lib/ipsec/plugins/libstrongswan-forecast.so
usr/lib/ipsec/plugins/libstrongswan-ha.so
usr/lib/ipsec/plugins/libstrongswan-ipseckey.so
usr/lib/ipsec/plugins/libstrongswan-led.so
@@ -17,10 +19,12 @@ usr/lib/ipsec/plugins/libstrongswan-xauth-*.so
# standard configuration files
usr/share/strongswan/templates/config/plugins/addrblock.conf
usr/share/strongswan/templates/config/plugins/attr-sql.conf
+usr/share/strongswan/templates/config/plugins/bypass-lan.conf
usr/share/strongswan/templates/config/plugins/certexpire.conf
usr/share/strongswan/templates/config/plugins/dnscert.conf
usr/share/strongswan/templates/config/plugins/eap-*.conf
usr/share/strongswan/templates/config/plugins/error-notify.conf
+usr/share/strongswan/templates/config/plugins/forecast.conf
usr/share/strongswan/templates/config/plugins/ha.conf
usr/share/strongswan/templates/config/plugins/ipseckey.conf
usr/share/strongswan/templates/config/plugins/led.conf
@@ -36,10 +40,12 @@ etc/strongswan.d/pool.conf
etc/strongswan.d/tnc.conf
etc/strongswan.d/charon/addrblock.conf
etc/strongswan.d/charon/attr-sql.conf
+etc/strongswan.d/charon/bypass-lan.conf
etc/strongswan.d/charon/certexpire.conf
etc/strongswan.d/charon/dnscert.conf
etc/strongswan.d/charon/eap-*.conf
etc/strongswan.d/charon/error-notify.conf
+etc/strongswan.d/charon/forecast.conf
etc/strongswan.d/charon/ha.conf
etc/strongswan.d/charon/ipseckey.conf
etc/strongswan.d/charon/led.conf
diff --git a/debian/libstrongswan-extra-plugins.install b/debian/libstrongswan-extra-plugins.install
index ca6d4374..becbfe6d 100644
--- a/debian/libstrongswan-extra-plugins.install
+++ b/debian/libstrongswan-extra-plugins.install
@@ -5,6 +5,7 @@ usr/lib/ipsec/plugins/libstrongswan-chapoly.so
usr/lib/ipsec/plugins/libstrongswan-cmac.so
usr/lib/ipsec/plugins/libstrongswan-ctr.so
usr/lib/ipsec/plugins/libstrongswan-curl.so
+usr/lib/ipsec/plugins/libstrongswan-files.so
usr/lib/ipsec/plugins/libstrongswan-gcrypt.so
usr/lib/ipsec/plugins/libstrongswan-ldap.so
usr/lib/ipsec/plugins/libstrongswan-mgf1.so
@@ -23,6 +24,7 @@ usr/share/strongswan/templates/config/plugins/chapoly.conf
usr/share/strongswan/templates/config/plugins/cmac.conf
usr/share/strongswan/templates/config/plugins/ctr.conf
usr/share/strongswan/templates/config/plugins/curl.conf
+usr/share/strongswan/templates/config/plugins/files.conf
usr/share/strongswan/templates/config/plugins/gcrypt.conf
usr/share/strongswan/templates/config/plugins/ldap.conf
usr/share/strongswan/templates/config/plugins/mgf1.conf
@@ -42,6 +44,7 @@ etc/strongswan.d/charon/chapoly.conf
etc/strongswan.d/charon/cmac.conf
etc/strongswan.d/charon/ctr.conf
etc/strongswan.d/charon/curl.conf
+etc/strongswan.d/charon/files.conf
etc/strongswan.d/charon/gcrypt.conf
etc/strongswan.d/charon/ldap.conf
etc/strongswan.d/charon/mgf1.conf
diff --git a/debian/rules b/debian/rules
index 8c712d87..724b684e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -8,6 +8,7 @@ CONFIGUREARGS := --libdir=/usr/lib --libexecdir=/usr/lib \
--enable-agent \
--enable-attr-sql \
--enable-bliss \
+ --enable-bypass-lan \
--enable-ccm \
--enable-certexpire \
--enable-chapoly \
@@ -25,6 +26,8 @@ CONFIGUREARGS := --libdir=/usr/lib --libexecdir=/usr/lib \
--enable-eap-tnc \
--enable-eap-ttls \
--enable-error-notify \
+ --enable-files \
+ --enable-forecast \
--enable-gcm \
--enable-gcrypt \
--enable-ha \
--
Gerald Turner <gturner at unzane.com> Encrypted mail preferred!
OpenPGP: 4096R / CA89 B27A 30FA 66C5 1B80 3858 EC94 2276 FDB8 716D
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 948 bytes
Desc: not available
URL: <http://lists.alioth.debian.org/pipermail/pkg-swan-devel/attachments/20170423/50d4dab2/attachment.sig>
More information about the Pkg-swan-devel
mailing list