6f379f79f0
Resolves: #1065366
6 lines
207 B
Bash
6 lines
207 B
Bash
#!/bin/sh
|
|
nodevs=$(< /proc/filesystems awk '$1 == "nodev" && $2 != "rootfs" && $2 != "zfs" { print $2 }')
|
|
renice +19 -p $$ >/dev/null 2>&1
|
|
ionice -c2 -n7 -p $$ >/dev/null 2>&1
|
|
/usr/bin/updatedb -f "$nodevs"
|