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