mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-02-19 18:51:33 +01:00
11 lines
169 B
Bash
Executable file
11 lines
169 B
Bash
Executable file
#!/bin/sh /etc/rc.common
|
|
|
|
START=01
|
|
|
|
start()
|
|
{
|
|
if [ -e /proc/sys/kernel/core_pattern ]
|
|
then
|
|
echo "|/sbin/logcore %e %s" > /proc/sys/kernel/core_pattern
|
|
fi
|
|
}
|