/[smeserver]/rpms/e-smith-ntp/sme9/e-smith-ntp-2.4.0-Memlimit.patch
ViewVC logotype

Annotation of /rpms/e-smith-ntp/sme9/e-smith-ntp-2.4.0-Memlimit.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Tue Feb 5 03:57:24 2013 UTC (11 years, 3 months ago) by wellsi
Branch: MAIN
CVS Tags: e-smith-ntp-2_4_0-3_el6_sme, e-smith-ntp-2_4_0-4_el6_sme, e-smith-ntp-2_4_0-7_el6_sme, e-smith-ntp-2_4_0-5_el6_sme, e-smith-ntp-2_4_0-2_el6_sme, e-smith-ntp-2_4_0-6_el6_sme, HEAD
* Mon Feb 4 2013 Ian Wells <esmith@wellsi.com> 2.4.0-2.sme
- Increase memory limit for ntpd [SME: 7243]

1 wellsi 1.1 diff -ruN e-smith-ntp-2.2.0.old/root/etc/e-smith/templates/var/service/ntpd/env/MEMLIMIT e-smith-ntp-2.2.0/root/etc/e-smith/templates/var/service/ntpd/env/MEMLIMIT
2     --- e-smith-ntp-2.2.0.old/root/etc/e-smith/templates/var/service/ntpd/env/MEMLIMIT 2005-08-31 14:27:23.000000000 -0700
3     +++ e-smith-ntp-2.2.0/root/etc/e-smith/templates/var/service/ntpd/env/MEMLIMIT 2013-02-02 22:07:02.000000000 -0800
4     @@ -1 +1,14 @@
5     -{ $OUT = ($ntpd{MemLimit} > "6000000") ? $ntpd{MemLimit} : "6000000" }
6     +{
7     + # memory limit to catch any memory leak before it kills the system
8     + use constant MIN_MEMORY_LIMIT => 25000000;
9     +
10     + # If there is a memory limit in the database and it is below the minimum, delete it.
11     + if (defined $ntpd{MemLimit} && $ntpd{MemLimit} < MIN_MEMORY_LIMIT)
12     + {
13     + $DB->get_prop_and_delete('ntpd','MemLimit');
14     + delete $ntpd{MemLimit};
15     + }
16     +
17     + $OUT = $ntpd{MemLimit} || MIN_MEMORY_LIMIT;
18     +}
19     +

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed