Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,11 @@ spec:
ulimit -n 1024

/usr/libexec/ipsec/addconn --config /etc/ipsec.conf --checkconfig
# Check kernel modules
/usr/libexec/ipsec/_stackmanager start
# Check kernel modules only for libreswan version <= 5.2. The _stackmanager binary is
# removed from 5.3 onwards, so this check is not needed on later versions.
if [ -e /usr/libexec/ipsec/_stackmanager ]; then
/usr/libexec/ipsec/_stackmanager start
fi
# Check nss database status
/usr/sbin/ipsec --checknss
# Start the pluto IKE daemon
Expand Down
7 changes: 5 additions & 2 deletions bindata/network/ovn-kubernetes/common/ipsec-host.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,11 @@ spec:
ulimit -n 1024

/usr/libexec/ipsec/addconn --config /etc/ipsec.conf --checkconfig
# Check kernel modules
/usr/libexec/ipsec/_stackmanager start
# Check kernel modules only for libreswan version <= 5.2. The _stackmanager binary is
# removed from 5.3 onwards, so this check is not needed on later versions.
if [ -e /usr/libexec/ipsec/_stackmanager ]; then
/usr/libexec/ipsec/_stackmanager start
fi
# Check nss database status
/usr/sbin/ipsec --checknss

Expand Down