10 lines
90 B
Bash
Executable File
10 lines
90 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#kdumpctl sets this explicitly
|
|
if [ -z "$IN_KDUMP" ]
|
|
then
|
|
exit 1
|
|
fi
|
|
exit 0
|
|
|