Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
195 |
- |
1 |
#!/bin/sh
|
|
|
2 |
nodevs=$(< /proc/filesystems awk '$1 == "nodev" && $2 != "zfs" { print $2 }')
|
|
|
3 |
renice +19 -p $$ >/dev/null 2>&1
|
|
|
4 |
ionice -c2 -n7 -p $$ >/dev/null 2>&1
|
|
|
5 |
/usr/bin/updatedb -f "$nodevs"
|