...
You can fix that up by commenting out that if/fi block and just set a timeout (in seconds):
set timeout=5
Core Dumps
Enabling core dumps on OpenXT is not working at the moment. There is a ticket:
| Jira Legacy | ||||||
|---|---|---|---|---|---|---|
|
One way around it is to enable them manually from a terminal:
$ ulimit -c unlimitedIn the cases where you need to have them enabled before a daemon starts you can add that to the daemon init script before the call to start it:
ulimit -c unlimited >/dev/null 2>&1It seems SELinux must be disabled too. To disable it for every boot, edit /etc/selinix/config and change enforcing to permissive.