[Swan-dev] commit dc19cb54108c3e3831a29c343803bf57e935838a

D. Hugh Redelmeier hugh at mimosa.com
Mon Mar 17 17:37:40 EET 2014


| From: Tuomo Soini <tis at vault.libreswan.fi>

| commit dc19cb54108c3e3831a29c343803bf57e935838a
| Author: Tuomo Soini <tis at foobar.fi>
| Date:   Mon Mar 17 13:51:32 2014 +0200
| 
|     ipsec: help, don't list commands twice when LIBDIR = EXECDIR

+       if [ ${IPSEC_LIBDIR} = ${IPSEC_EXECDIR} ]; then

I think that should be

       if [ "${IPSEC_LIBDIR}" = "${IPSEC_EXECDIR}" ]; then

Also
+           HELPDIRS=${IPSEC_EXECDIR}

should probably be
+           HELPDIRS="${IPSEC_EXECDIR}"

(Simple quoting cannot save
+       for f in $(ls ${HELPDIRS} | egrep -v -i "${DONTMENTION}"); do
                 ================
It was wrong before you made changes.)


More information about the Swan-dev mailing list