diff options
author | Yves-Alexis Perez <corsac@debian.org> | 2018-09-24 22:45:08 +0200 |
---|---|---|
committer | Yves-Alexis Perez <corsac@debian.org> | 2018-10-01 12:02:45 +0200 |
commit | 37dae128e0447b89302577a7479eb6bc9e887f9d (patch) | |
tree | 336a5a6250ba1d90d7d1774b4b745237aa2db43d /debian | |
parent | 80407b2ba6e0a0322182487047b7c768c9c72abf (diff) | |
download | vyos-strongswan-37dae128e0447b89302577a7479eb6bc9e887f9d.tar.gz vyos-strongswan-37dae128e0447b89302577a7479eb6bc9e887f9d.zip |
enable chapoly plugin
closes: #814927
Diffstat (limited to 'debian')
-rw-r--r-- | debian/libstrongswan-extra-plugins.install | 3 | ||||
-rwxr-xr-x | debian/rules | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/debian/libstrongswan-extra-plugins.install b/debian/libstrongswan-extra-plugins.install index cfa597862..2846e2155 100644 --- a/debian/libstrongswan-extra-plugins.install +++ b/debian/libstrongswan-extra-plugins.install @@ -2,6 +2,7 @@ usr/bin/tpm_extendpcr # libstrongswan plugins usr/lib/ipsec/plugins/libstrongswan-ccm.so +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 @@ -14,6 +15,7 @@ usr/lib/ipsec/plugins/libstrongswan-tpm.so # default configuration files usr/share/strongswan/templates/config/plugins/ccm.conf usr/share/strongswan/templates/config/plugins/cmac.conf +usr/share/strongswan/templates/config/plugins/chapoly.conf usr/share/strongswan/templates/config/plugins/ctr.conf usr/share/strongswan/templates/config/plugins/curl.conf usr/share/strongswan/templates/config/plugins/curve25519.conf @@ -23,6 +25,7 @@ usr/share/strongswan/templates/config/plugins/pkcs11.conf usr/share/strongswan/templates/config/plugins/test-vectors.conf usr/share/strongswan/templates/config/plugins/tpm.conf etc/strongswan.d/charon/ccm.conf +etc/strongswan.d/charon/chapoly.conf etc/strongswan.d/charon/cmac.conf etc/strongswan.d/charon/ctr.conf etc/strongswan.d/charon/curl.conf diff --git a/debian/rules b/debian/rules index b94bc7ddc..ca02a0635 100755 --- a/debian/rules +++ b/debian/rules @@ -9,6 +9,7 @@ CONFIGUREARGS := --libdir=/usr/lib --libexecdir=/usr/lib \ --enable-bypass-lan \ --enable-ccm \ --enable-certexpire \ + --enable-chapoly \ --enable-cmd \ --enable-ctr \ --enable-curl \ |