diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2012-05-02 21:13:14 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2012-05-02 21:13:14 +0200 |
commit | 9fc69a0c81975faff7e5f5666bf56a3bc9b5b239 (patch) | |
tree | c1b64967be3545cd158a7f75a1b48bea9b194ec9 /testing | |
parent | ed7186cbe11e6c6c92769a232390f1a68457024d (diff) | |
download | strongswan-9fc69a0c81975faff7e5f5666bf56a3bc9b5b239.tar.bz2 strongswan-9fc69a0c81975faff7e5f5666bf56a3bc9b5b239.tar.xz |
two new options for 5.0.0 UML testing
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/scripts/build-umlrootfs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index 4c066001c..a2b6f73ee 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -352,6 +352,11 @@ then echo -n " --enable-ha" >> $INSTALLSHELL fi +if [ "$USE_PLUTO" = "yes" ] +then + echo -n " --enable-pluto" >> $INSTALLSHELL +fi + if [ "$USE_AF_ALG" = "yes" ] then echo -n " --enable-af-alg" >> $INSTALLSHELL @@ -362,6 +367,11 @@ then echo -n " --enable-whitelist" >> $INSTALLSHELL fi +if [ "$USE_XAUTH_GENERIC" = "yes" ] +then + echo -n " --enable-xauth-generic" >> $INSTALLSHELL +fi + if [ "$USE_PKCS8" = "yes" ] then echo -n " --enable-pkcs8" >> $INSTALLSHELL |