blob: 71b4f1b2c58e989ff079c6c4a05f134aa93d726c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh -e
# try to set the required values now. This may or may not work.
# Allow for a nerd knob to skip this, e.g. during the container installs
if [ -z "${VPP_INSTALL_SKIP_SYSCTL}" ]
then
sysctl --system
fi
#DEBHELPER#
exit 0
|