4 |
- |
1 |
# Set this to no to disable prelinking altogether
|
|
|
2 |
# (if you change this from yes to no prelink -ua
|
|
|
3 |
# will be run next night to undo prelinking)
|
|
|
4 |
PRELINKING=yes
|
|
|
5 |
|
|
|
6 |
# Options to pass to prelink
|
|
|
7 |
# -m Try to conserve virtual memory by allowing overlapping
|
|
|
8 |
# assigned virtual memory slots for libraries which
|
|
|
9 |
# never appear together in one binary
|
|
|
10 |
# -R Randomize virtual memory slot assignments for libraries.
|
|
|
11 |
# This makes it slightly harder for various buffer overflow
|
|
|
12 |
# attacks, since library addresses will be different on each
|
|
|
13 |
# host using -R.
|
|
|
14 |
PRELINK_OPTS=-mR
|
|
|
15 |
|
|
|
16 |
# How often should full prelink be run (in days)
|
|
|
17 |
# Normally, prelink will be run in quick mode, every
|
|
|
18 |
# $PRELINK_FULL_TIME_INTERVAL days it will be run
|
|
|
19 |
# in normal mode. Comment it out if it should be run
|
|
|
20 |
# in normal mode always.
|
|
|
21 |
PRELINK_FULL_TIME_INTERVAL=14
|
|
|
22 |
|
|
|
23 |
# How often should prelink run (in days) even if
|
|
|
24 |
# no packages have been upgraded via rpm.
|
|
|
25 |
# If $PRELINK_FULL_TIME_INTERVAL days have not elapsed
|
|
|
26 |
# yet since last normal mode prelinking, last
|
|
|
27 |
# quick mode prelinking happened less than
|
|
|
28 |
# $PRELINK_NONRPM_CHECK_INTERVAL days ago
|
|
|
29 |
# and no packages have been upgraded by rpm
|
|
|
30 |
# since last quick mode prelinking, prelink
|
|
|
31 |
# will not do anything.
|
|
|
32 |
# Change to
|
|
|
33 |
# PRELINK_NONRPM_CHECK_INTERVAL=0
|
|
|
34 |
# if you want to disable the rpm database timestamp
|
|
|
35 |
# check (especially if you don't use rpm/up2date/yum/apt-rpm
|
|
|
36 |
# exclusively to upgrade system libraries and/or binaries).
|
|
|
37 |
PRELINK_NONRPM_CHECK_INTERVAL=7
|