blob: beb5110d76682175d24f4cf8ad2c452b57548997 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
. `dirname $0`/functions
option bin reserved_option /usr/sbin/portmap
function fct_pre_start {
# portmap dies if >1024 fds are available !
ulimit -n 1024
}
load_config
|