blob: 5ffd98b9d0d07cdef294f56c248a0e9579b318bc (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
renice +19 -p $$ > /dev/null 2>&1
#By default, we'll do quick cron runs of prelink
PRELINK_OPTS="-amRq"
#If you don't want to do this, then use this opts.
#PRELINK_OPTS="-amR"
/usr/sbin/prelink $PRELINK_OPTS
|