blob: 5821d5090c84040f6d3b97930c2b96ae7f2a0b27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/sbin/openrc-run
supervisor=supervise-daemon
name="Low Memory Monitor"
description="Read memory pressure information and signal user processes and kernel OOM accordingly"
command=/usr/libexec/low-memory-monitor
depend() {
need localmount
}
start_pre() {
# We need /proc/pressure directory that contains information about memory
# pressure. this requires CONFIG_PSI=y, if CONFIG_PSI_DEFAULT_DISABLED is
# also used then you need to pass pse=1 on the kernel cmdline
checkpath --directory /proc/pressure
}
|