blob: 6d50250259590ac90e922a42e3ad64b5563942d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
echo
echo "##########################################################"
echo "# Before starting to use openvas run the #"
echo "# following post installation tasks: #"
echo "##########################################################"
echo '# echo "net.core.somaxconn = 1024" >> /etc/sysctl.conf #'
echo '# echo "vm.overcommit_memory = 1" >> /etc/sysctl.conf #'
echo "# sysctl -p #"
echo "##########################################################"
echo
}
post_upgrade() {
post_install
}
|