-
Notifications
You must be signed in to change notification settings - Fork 0
/
e-smith-base.spec
1744 lines (1320 loc) · 65.5 KB
/
e-smith-base.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# $Id: e-smith-base.spec,v 1.125 2010/12/07 08:18:56 vip-ire Exp $
Summary: e-smith server and gateway - base module
%define name e-smith-base
Name: %{name}
%define version 5.2.0
%define release 56
Version: %{version}
Release: %{release}%{?dist}
License: GPL
Group: Networking/Daemons
Source: %{name}-%{version}.tar.gz
Patch1: e-smith-base-5.2.0-sambaRole.patch
Patch2: e-smith-base-5.2.0-smartd40.patch
Patch3: e-smith-base-5.2.0-usbRev70drive.patch
Patch4: e-smith-base-5.2.0-FixLabelArray.patch
Patch5: e-smith-base-5.2.0-straysymlink.patch
Patch6: e-smith-base-5.2.0-nonetworkdrivers.patch
Patch7: e-smith-base-5.2.0-checkIPOverlap.patch
Patch8: e-smith-base-5.2.0-adapter-translation-fixes.patch
Patch9: e-smith-base-5.2.0-FixLocale_External.patch
Patch10: e-smith-base-5.2.0-perform_restore-hal.patch
Patch11: e-smith-base-5.2.0-generate-2048-bits-keys.patch
Patch12: e-smith-base-5.2.0-perform_backup-hal.patch
Patch13: e-smith-base-5.2.0-hwaddress.patch
Patch14: e-smith-base-5.2.0-sha1.patch
Patch15: e-smith-base-5.2.0-fix-template-expansion-error.patch
Patch16: e-smith-base-5.2.0-gettext.patch
Patch17: e-smith-base-5.2.0-remove-freebusy-references.patch
Patch18: e-smith-base-5.2.0-no-nic.patch
Patch19: e-smith-base-5.2.0-fix-local-nic-string-in-console.patch
Patch20: e-smith-base-5.2.0-freebusy-user-modify-fix.patch
Patch21: e-smith-base-5.2.0-condrestart.patch
Patch22: e-smith-base-5.2.0-condrestart.patch2
Patch23: e-smith-base-5.2.0-cpuspeed.patch
Patch24: e-smith-base-5.2.0-nss_ldap.patch
Patch25: e-smith-base-5.2.0-ibay_groups.patch
Patch26: e-smith-base-5.2.0-keep_external.patch
Patch27: e-smith-base-5.2.0-checkMaxUsers.patch
Patch28: e-smith-base-5.2.0-apmd64bit.patch
Patch29: e-smith-base-5.2.0-relocate_dhclient_conf.patch
Patch30: e-smith-base-5.2.0-echo-options.patch
Patch31: e-smith-base-5.2.0-migrateHWaddr.patch
Patch32: e-smith-base-5.2.0-relocate_dhcpd_leases_file.patch
Patch33: e-smith-base-5.2.0-fix_empty_file_test.patch
Patch34: e-smith-base-5.2.0-cpu-conf.patch
Patch35: e-smith-base-5.2.0-ldap-auth.patch
Patch36: e-smith-base-5.2.0-enable-cpu.patch
Patch37: e-smith-base-5.2.0-better-ldap.patch
Patch38: e-smith-base-5.2.0-add-extra-ldap.patch
Patch39: e-smith-base-5.2.0-cpu-can-delete.patch
Patch40: e-smith-base-5.2.0-supp-groups.patch
Patch41: e-smith-base-5.2.0-fix_gpasswd_path.patch
Patch42: e-smith-base-5.2.0-fix-gid.patch
Patch43: e-smith-base-5.2.0-weak-updates.patch
Patch44: e-smith-base-5.2.0-apache_alias_for_www.patch
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
Requires: mod_auth_external
Requires: e-smith-lib >= 2.2.0-2
Requires: server-manager-images, server-manager
Requires: e-smith-formmagick >= 1.4.0-12
Requires: initscripts >= 6.67-1es17
Requires: e-smith-daemontools >= 1.7.1-04
Requires: perl(Locale::gettext)
Requires: perl(Crypt::Cracklib)
Requires: perl(Date::Manip)
Requires: perl(Data::UUID)
Requires: perl(Net::IPv4Addr)
Requires: /usr/sbin/irqbalance
Requires: /usr/sbin/cpuspeed
Requires: /sbin/microcode_ctl
Requires: /usr/sbin/smartd
Requires: dbus
Requires: hal
Requires: acpid
Requires: rssh
Requires: bridge-utils
Requires: vconfig
Requires: e-smith-bootloader
Requires: mdadm
Requires: pv
Requires: pam_abl
Requires: nss_ldap
Requires: cpu >= 1.4.3
Obsoletes: rlinetd, e-smith-mod_ssl
Obsoletes: e-smith-serial-console
Obsoletes: sshell
Obsoletes: e-smith-rp-pppoe
Obsoletes: perl-Data-UUID
BuildRequires: perl, perl(Test::Inline) >= 0.12
BuildRequires: e-smith-devtools >= 1.13.1-03
BuildRequires: gettext
%ifarch i386
Requires: apmd
%endif
%define dbfiles accounts configuration domains hosts networks
AutoReqProv: no
%description
e-smith server and gateway software - base module.
%changelog
* Mon Dec 6 2010 Daniel Berteaud <[email protected]> 5.2.0-56.sme
- change apache uid and gid so they become aliases for www [SME: 6425]
* Tue Nov 30 2010 Shad L. Lords <[email protected]> 5.2.0-55.sme
- Only remove dangling symlinks in weak-updates directories [SME: 6376]
* Tue Nov 30 2010 Shad L. Lords <[email protected]> 5.2.0-54.sme
- Fix create user gid parameter [SME: 6416]
* Mon Nov 29 2010 Daniel Berteaud <[email protected]> 5.2.0-53.sme
- Fix gpasswd path [SME: 6412]
* Mon Nov 22 2010 Shad L. Lords <[email protected]> 5.2.0-52.sme
- Fix relocation of dhclient conf file [SME: 6385]
* Sun Nov 7 2010 Shad L. Lords <[email protected]> 5.2.0-51.sme
- No longer need to pass supplemental groups to cpu [SME: 6349]
* Fri Nov 5 2010 Shad L. Lords <[email protected]> 5.2.0-50.sme
- Allow cpu to remove empty attributes [SME: 6343]
* Thu Nov 4 2010 Shad L. Lords <[email protected]> 5.2.0-49.sme
- Fix maxUsers patch (again) to not break setting passwords [SME: 5537]
* Thu Nov 4 2010 Shad L. Lords <[email protected]> 5.2.0-48.sme
- Fix maxUsers patch to not break setting passwords [SME: 5537]
* Thu Nov 4 2010 Shad L. Lords <[email protected]> 5.2.0-47.sme
- Don't put empty attributes in file for cpu [SME: 6334]
* Thu Nov 4 2010 Shad L. Lords <[email protected]> 5.2.0-46.sme
- Add flush to tmpfile so that data is available to cpu [SME: 6334]
* Thu Nov 4 2010 Shad L. Lords <[email protected]> 5.2.0-45.sme
- Add extra attributes to ldap objects with cpu call [SME: 6334]
* Wed Nov 3 2010 Shad L. Lords <[email protected]> 5.2.0-44.sme
- Fix cpu critical patch missing ' [SME: 6330]
* Wed Nov 3 2010 Shad L. Lords <[email protected]> 5.2.0-43.sme
- Make cpu calls critical only with ldap{Auth} is enabled [SME: 6330]
- Add cpu.conf and cpu-system.conf to post-upgrade event [SME: 6327]
* Tue Nov 2 2010 Shad L. Lords <[email protected]> 5.2.0-42.sme
- Always use cpu, do unix if ldap{Auth} is disabled [SME: 6328]
* Mon Nov 1 2010 Shad L. Lords <[email protected]> 5.2.0-41.sme
- Switch to cpu commands if ldap is master [SME: 6328]
* Mon Nov 1 2010 Shad L. Lords <[email protected]> 5.2.0-40.sme
- Add templates for ldap authentication if enabled [SME: 6329]
* Mon Nov 1 2010 Shad L. Lords <[email protected]> 5.2.0-39.sme
- Add cpu.conf and cpu-system.conf template/program to SME [SME: 6327]
* Thu Oct 14 2010 Daniel Berteaud <[email protected]> 5.2.0-38.sme
- Fix empty leases file test [SME: 6274]
* Tue Oct 12 2010 Daniel Berteaud <[email protected]> 5.2.0-37.sme
- Relocate dhcpd leases file [SME: 6274]
* Mon Oct 11 2010 Shad L. Lords <[email protected]> 5.2.0-36.sme
- Add migrate script to add missing HWaddr to interface records [SME: 6267]
* Mon Oct 11 2010 Shad L. Lords <[email protected]> 5.2.0-35.sme
- Make lcp options configurable [SME: 6277]
* Mon Oct 11 2010 Daniel Berteaud <[email protected]> 5.2.0-34.sme
- Relocate dhclient conf file [SME: 5833]
* Fri Oct 8 2010 Shad L. Lords <[email protected]> 5.2.0-33.sme
- Disable apmd on 64-bit arch [SME: 6170]
* Fri Oct 8 2010 Shad L. Lords <[email protected]> 5.2.0-32.sme
- Remove check for maxUsers [SME: 5537]
* Wed Oct 6 2010 Shad L. Lords <[email protected]> 5.2.0-31.sme
- Try and keep same external address for pppoe connections [SME: 6263]
* Mon Sep 27 2010 Shad L. Lords <[email protected]> 5.2.0-30.sme
- Add ibay groups to group membership [SME: 6247]
* Thu Sep 23 2010 Daniel Berteaud <[email protected]> 5.2.0-29.sme
- Prepare nss_ldap [SME: 6227]
* Sun Aug 8 2010 Ian Wells <[email protected]> 5.2.0-28.sme
- Enable cpuspeed by default [SME: 6066]
* Sun Jul 25 2010 Charlie Brady <[email protected]> 5.2.0-27.sme
- Fix syntax error in last patch. [SME: 5830]
* Mon Jul 19 2010 Charlie Brady <[email protected]> 5.2.0-26.sme
- Don't exit 99 from e-smith-service script when called with 'condrestart'
and service is disabled. [SME: 5830]
* Fri Jun 11 2010 Federico Simoncelli <[email protected]> 5.2.0-25.sme
- FreeBusy patch fix (save account changes) [SME: 5941]
* Fri Jun 11 2010 Ian Wells <[email protected]> 5.2.0-24.sme
- Remove checkMaxUsers patch due to regression. [SME: 5537]
* Tue Jun 8 2010 Jonathan Martens <[email protected]> 5.2.0-23.sme
- Fix translation of local nic string in console [SME: 5571]
* Sun Jun 6 2010 Jonathan Martens <[email protected]> 5.2.0-22.sme
- Handle no network interface scenario in console [SME: 6023]
* Sat Jun 5 2010 Ian Wells <[email protected]> 5.2.0-21.sme
- Remove checkMaxUsers(). [SME: 5537]
* Mon May 10 2010 John H. Bennett III <[email protected]> 5.2.0-20.sme
- Patch that will remove all FreeBusy references from e-smith-base. [SME: 5941]
* Wed Mar 3 2010 Federico Simoncelli <[email protected]> 5.2.0-19.sme
- Restate smartd dependency. [SME: 5814]
* Mon Mar 1 2010 Shad L. Lords <[email protected]> 5.2.0-18.sme
- Fix gettext errors in WAN/LAN subnet error message [SME: 5501]
* Sun Feb 14 2010 Jonathan Martens <[email protected]> 5.2.0-17.sme
- Really fix template expansion error [SME: 4528]
* Sun Feb 14 2010 Jonathan Martens <[email protected]> 5.2.0-16.sme
- Fix template expansion error [SME: 4528]
* Mon Feb 8 2010 Jonathan Martens <[email protected]> 5.2.0-15.sme
- Improve security by using SHA1 algorithm for certificate signing [SME: 5737]
* Fri Feb 5 2010 Stephen Noble <[email protected]> 5.2.0-14.sme
- Fix eth? swapping [SME: 4528]
* Sun Jan 31 2010 Stephen Noble <[email protected]> 5.2.0-13.sme
- Fix console backup from removable media [SME: 4809]
* Sat Jan 30 2010 Jonathan Martens <[email protected]> 5.2.0-12.sme
- Bump certificate encryption from 1024 bits to 2048 bits [SME: 5735]
* Thu Jan 14 2010 Filippo Carletti <[email protected]> 5.2.0-11.sme
- Fix console restore from removable media (Federico Simoncelli) [SME: 4809]
* Mon Nov 23 2009 Gavin Weight <[email protected]> 5.2.0-10.sme
- Add a dummy call so xgettext can pull translated $ifName in console configuration pages. [SME: 5571]
* Fri Nov 6 2009 Jonathan Martens <[email protected]> 5.2.0-9.sme
- Translate $ifName in console configuration pages [SME: 5571]
* Sat Oct 24 2009 Jonathan Martens <[email protected]> 5.2.0-8.sme
- Prevent IP conflicts between local and external interface in server gateway mode [SME: 5501]
* Tue Oct 20 2009 Filippo Carletti <[email protected]> 5.2.0-7.sme
- Clean up: remove unused nonetworkdrivers [SME: 5521]
* Sat Jun 6 2009 Shad L. Lords <[email protected]> 5.2.0-6.sme
- Clean up stray symlinks in /lib/modules before depmod [SME: 5336]
* Mon May 18 2009 Gavin Weight <[email protected]> 5.2.0-5.sme
- Allow for different mdadm output formats for DeviceSize. [SME: 5230]
* Sat Feb 14 2009 Jonathan Martens <[email protected]> 5.2.0-4.sme
- Auto-mount USB REV70-drive as usbdisk [SME: 5006]
* Sat Oct 25 2008 Stephen Noble <[email protected]> 5.2.0-3.sme
- create service link for smartd [SME: 1445]
* Mon Oct 13 2008 Shad L. Lords <[email protected]> 5.2.0-2.sme
- Add patch to support multiple samba roles [SME: 4172]
* Tue Oct 7 2008 Shad L. Lords <[email protected]> 5.2.0-1.sme
- Roll new stream to separate sme7/sme8 trees [SME: 4633]
* Tue Sep 23 2008 Stephen Noble <[email protected]> 4.19.0-6
- Add locale tags for email in review panel [SME: 4267]
* Sat Sep 20 2008 Shad L. Lords <[email protected]> 4.19.0-5
- Correct gettext type during build process [SME: 570]
* Mon Sep 15 2008 Shad L. Lords <[email protected]> 4.19.0-4
- Fix screen corruption in console [SME: 4155]
* Sat Sep 13 2008 Shad L. Lords <[email protected]> 4.19.0-3
- Fix detection of xen instance against newer kernels [SME: 4555]
* Thu Aug 28 2008 Jonathan Martens <[email protected]> 4.19.0-2
- Fixed warnings generated during build process [SME: 570]
* Wed Aug 20 2008 Shad L. Lords <[email protected]> 4.19.0-1
- Roll new dev stream.
* Sun Aug 17 2008 Gavin Weight <[email protected]> 4.18.1-22
- Add gettext to creating backup file title for localization. [SME: 4467]
* Mon Aug 11 2008 Charlie Brady <[email protected]> 4.18.1-21
- Fix race condition in VPN ip-down handling which could cause loss of
LAN connectivity. [SME: 4405]
* Sat Aug 9 2008 Shad L. Lords <[email protected]> 4.18.1-20
- Remove requires for whiptail. No longer needed [SME: 4491]
* Fri Aug 8 2008 Jonathan Martens <[email protected]> 4.18.1-19
- Change userpassword panel to use PASSWORD_VERIFY_NEW instead of PASSWORD_NEW_VERIFY [SME: 4487]
* Thu Aug 7 2008 Jonathan Martens <[email protected]> 4.18.1-18
- Revert locale key PASSWORD_RESET_TITLE to RESET_PASSWORD_TITLE and move it
to e-smith-formmagick's general [SME: 4475]
- Reverting all *PASSWORD_NO_MATCH to *PASSWORD_VERIFY_ERROR locale keys [SME: 4476]
- Remove invalid entry tag from userpassword's locale file preventing the
form from displaying properly [SME: 4479]
* Tue Aug 5 2008 Jonathan Martens <[email protected]> 4.18.1-17
- Revert previous invalid locale changes (reverting to 4.18.1-15) [SME: 4472]
* Mon Aug 4 2008 Jonathan Martens <[email protected]> 4.18.1-16
- Revert some locale changes
* Tue Jul 22 2008 Gavin Weight <[email protected]> 4.18.1-15
- Add regex to support cciss device names in manageRAID.pl. [SME: 4455]
* Sat Jul 5 2008 Jonathan Martens <[email protected]> 4.18.1-14
- Add common <base> tags to e-smith-formmagick's general [SME: 4279]
* Sun Apr 27 2008 Jonathan Martens <[email protected]> 4.18.1-13
- Add common <base> tags to e-smith-formmagick's general [SME: 4279]
* Wed Apr 23 2008 Shad L. Lords <[email protected]> 4.18.1-12
- Fix for > 5 nics detected [SME: 4232]
* Tue Apr 22 2008 Shad L. Lords <[email protected]> 4.18.1-11
- Remove use of Date::Manip from ssl.crt [SME: 3155]
* Sat Apr 19 2008 Shad L. Lords <[email protected]> 4.18.1-10
- Fix FreeBusy param when disabled [SME: 1806]
- Remove .orig file [SME: 4228]
* Wed Apr 2 2008 Shad L. Lords <[email protected]> 4.18.1-9
- Remove quitConsole from menu [SME: 4154]
* Wed Apr 2 2008 Shad L. Lords <[email protected]> 4.18.1-8
- Really fix free/busy in usermanager [SME: 4157]
* Wed Apr 2 2008 Shad L. Lords <[email protected]> 4.18.1-7
- Use frames in elinks [SME: 4156]
- Set homepage for elinks [SME: 4160]
* Wed Apr 2 2008 Shad L. Lords <[email protected]> 4.18.1-6
- Fix free/busy field in useraccounts [SME: 4157]
* Tue Apr 1 2008 Shad L. Lords <[email protected]> 4.18.1-5
- Add free/busy URL entry to help kronolith contribs [SME: 1806]
* Fri Mar 28 2008 Shad L. Lords <[email protected]> 4.18.1-4
- Fix insert_mode for elinks on el5 platform [SME: 4127]
* Wed Mar 26 2008 Shad L. Lords <[email protected]> 4.18.1-3
- Set accounts to deleted before template expansion [SME: 4122]
* Wed Mar 26 2008 Shad L. Lords <[email protected]> 4.18.1-2
- Fix gettext strings returned by password checks [SME: 4104]
* Wed Mar 26 2008 Shad L. Lords <[email protected]> 4.18.1-1
- Roll new stable stream consolidating patches.
* Mon Mar 24 2008 Shad L. Lords <[email protected]> 4.18.0-104
- Finish removing pleasewait [SME: 126]
* Tue Mar 18 2008 Shad L. Lords <[email protected]> 4.18.0-103
- Add gettext to console titles. [SME: 4089]
* Sat Mar 15 2008 Stephen Noble <[email protected]> 4.18.0-102
- Minor translation fixes [SME: 4058] [SME: 4059]
* Wed Mar 12 2008 Shad L. Lords <[email protected]> 4.18.0-101
- Remove tests for removed FORM_TITLE's [SME: 4050]
* Wed Mar 12 2008 Shad L. Lords <[email protected]> 4.18.0-100
- Cleanup SAVE/ADD tag mixup [SME: 4045]
* Sat Mar 10 2008 Shad L. Lords <[email protected]> 4.18-99
- Fix dyndns custom gettext [SME: 4032]
* Sat Mar 07 2008 Stephen Noble <[email protected]> 4.18-98
- revised gettext messages [SME: 631]
* Sat Mar 07 2008 Stephen Noble <[email protected]> 4.18-97
- gettext messages [SME: 631]
* Sat Mar 07 2008 Stephen Noble <[email protected]> 4.18-96
- remove duplicate system password has been changed [SME: 3974]
* Sat Mar 07 2008 Stephen Noble <[email protected]> 4.18-95
- EthernetAssign shouldn't be translated [SME: 3947]
* Sun Feb 17 2008 Stephen Noble <[email protected]> 4.18-94
- Remove pleasewait function [SME: 126]
* Sun Feb 17 2008 Stephen Noble <[email protected]> 4.18-93
- fix gettext formatting in three files [SME: 3938]
* Wed Feb 13 2008 chris burnat <[email protected]> 4.18-92
- Fix creation of usernames and pseudonyms with one character
- [SME: 2451]
* Wed Feb 13 2008 Stephen Noble <[email protected]> 4.18-91
- Remove <base> tags now in general [SME: 3911]
* Sun Feb 10 2008 Stephen Noble <[email protected]> 4.18-90
- Remove duplicate <base> entries [SME: 3894]
* Sat Feb 09 2008 Stephen Noble <[email protected]> 4.18-89
- remove unused ROUTER_DESC token from lexicon [SME: 3879]
* Sat Jan 12 2008 Shad L. Lords <[email protected]> 4.18-88
- remove default of 1400 MTU for interfaces [SME: 549]
* Wed Jan 09 2008 Stephen Noble <[email protected]> 4.18-87
- db prop to dissociate admin password from root in useraccounts.pm [SME: 3117]
* Wed Jan 09 2008 Stephen Noble <[email protected]> 4.18-86
- pptp connections setting mtu/mru > 1400 [SME: 549]
* Tue Jan 08 2008 Stephen Noble <[email protected]> 4.18-85
- console to strength validate password choice on first entry [SME: 3131]
* Tue Jan 08 2008 Stephen Noble <[email protected]> 4.18-84
- Auto-mount USB REV-drive as usbdisk [SME: 2972]
* Sun Jan 06 2008 Stephen Noble <[email protected]> 4.18-83
- ignore error returns from tar [SME: 3127]
* Sun Jan 06 2008 Stephen Noble <[email protected]> 4.18-82
- Use esmith::util::validatePassword on console [SME: 2173]
* Mon Dec 24 2007 Gavin Weight <[email protected]> 4.18.0-81
- Link smartd.conf to bootstrap-save-console and console-save. [SME: 1445]
* Mon Dec 24 2007 Stephen Noble <[email protected]> 4.18-80
- Add smartd as a disabled service with template [SME: 1445]
* Sun Dec 16 2007 Shad L. Lords <[email protected]> 4.18.0-79
- Lock user accounts with usermod instead of passwd [SME: 3595]
* Sun Dec 16 2007 Gavin Weight <[email protected]> 4.18.0-78
- Add symlink to fr-fr locale. [SME: 3648]
* Mon Nov 12 2007 Shad L. Lords <[email protected]> 4.18.0-77
- Add fix for varying partition sizes in add_raid [SME: 3547]
* Sun Nov 11 2007 Gavin Weight <[email protected]> 4.18.0-76
- Fix removal of Corporate DNS from console. [SME: 3532]
* Fri Nov 02 2007 Gavin Weight <[email protected]> 4.18.0-75
- Remove previous change, applied to wrong package. [SME: 3512]
* Fri Nov 02 2007 Gavin Weight <[email protected]> 4.18.0-74
- Add WPAD feature for DHCP (Thanks Hector Perez). [SME: 3512]
* Tue Oct 16 2007 Gavin Weight <[email protected]> 4.18.0-73
- Make non-Removable pseudonyms point to admin when reassigned. [SME: 2214]
* Sun Oct 14 2007 Gavin Weight <[email protected]> 4.18.0-72
- Adjust success text when changing admin password. [SME: 2442]
* Thu Oct 11 2007 Charlie Brady <[email protected]> 4.18.0-71
- Fix comparison of expected to actual SSL cert data. Also change
truncation point for email address from 40 chars to 64. [SME: 1736].
[Note that -70 was inadvertently skipped.]
* Tue Sep 11 2007 Gavin Weight <[email protected]> 4.18.0-69
- Move httpd logrotate.d directory to e-smith-apache. [SME: 3380]
* Tue Sep 11 2007 Gavin Weight <[email protected]> 4.18.0-68
- Rename in logrotate.d directory apache to httpd. [SME: 3380]
* Fri Sep 07 2007 Charlie Brady <[email protected]> 4.18.0-67
- Fix pod in groups.pm file. [SME: 3379]
* Wed Aug 22 2007 Charlie Brady <[email protected]> 4.18.0-66
- Relax restrictions on restore devices, to allow CDR and DVDR.
[SME: 3126]
* Fri Aug 03 2007 Charlie Brady <[email protected]> 4.18.0-65
- Ensure that depmod is run for all installed kernels. [SME: 3235]
* Wed Jul 04 2007 Charlie Brady <[email protected]> 4.18.0-64
- Really really clear devices variable [SME: 3116]
* Sun Jul 1 2007 Shad L. Lords <[email protected]> 4.18.0-63
- Really clear devices variable [SME: 3116]
* Sun Jul 1 2007 Shad L. Lords <[email protected]> 4.18.0-62
- Clean up loop var and mount point for backup/restore [SME: 3116]
* Thu Jun 28 2007 Shad L. Lords <[email protected]> 4.18.0-61
- Improve usb backup error reporting [SME: 2772]
* Tue Jun 26 2007 Gavin Weight <[email protected]> 4.18.0-60
- Move the pam.d ftp/proftpd templates to e-smith-proftpd.
[SME: 2762]
* Tue Jun 19 2007 Charlie Brady <[email protected]> 4.18.0-59
- Have nonetworkdrivers script exit silently if kmodule bin not found.
[SME: 2549]
* Mon Jun 11 2007 Shad L. Lords <[email protected]> 4.18.0-58
- Start messagebus/haldaemon so restore works [SME: 3058]
* Sun Jun 10 2007 Stephen Noble <[email protected]> 4.18.0-57
- expand /etc/pam.d/login [SME: 2831]
* Wed Jun 06 2007 Charlie Brady <[email protected]> 4.18.0-56
- Prevent backout from console config during initial setup.
[SME: 2540]
* Sun Jun 3 2007 Shad L. Lords <[email protected]> 4.18.0-55
- Clean up some more newlines [SME: 3035]
- Make raid failures more verbose [SME: 3032]
- Fix add_drive_to_raid and partition issues [SME: 2155, 2232]
* Wed May 30 2007 Gavin Weight <[email protected]> 4.18.0-54
- Update noraid text and add newline after text. [SME: 3035]
* Thu May 24 2007 Shad L. Lords <[email protected]> 4.18.0-53
- Don't use cracklib in system-auth [SME: 2686]
* Fri May 18 2007 Shad L. Lords <[email protected]> 4.18.0-52
- Use correct lib for modules
* Thu May 17 2007 Shad L. Lords <[email protected]> 4.18.0-51
- Updates to support xenU instance
* Wed May 9 2007 Shad L. Lords <[email protected]> 4.18.0-50
- Updates to support SME Server 8
* Sat May 05 2007 Gavin Weight <[email protected]> 4.18.0-49
- Fix service match RE in /sbin/e-smith/service. [SME: 2959]
* Sun Apr 29 2007 Shad L. Lords <[email protected]>
- Clean up spec so package can be built by koji/plague
* Sun Apr 29 2007 Shad L. Lords <[email protected]> 4.18.0-48
- Change to dist for tagging release
- Only include apmd for i386 platforms
* Fri Apr 27 2007 Charlie Brady <[email protected]> 4.18.0-47
- Validate GatewayIP address more carefully. [SME: 2928]
* Sat Apr 14 2007 Stephen Noble <[email protected]> 4.18.0-46
- Field to change ssh port [SME: 2382]
* Sat Apr 14 2007 Stephen Noble <[email protected]> 4.18.0-45
- Change fm to self in remoteaccess.pm [SME: 2382]
* Fri Apr 13 2007 Shad L. Lords <[email protected]> 4.18.0-44
- Make configuration dbs config(noreplace) [SME: 2527]
* Fri Apr 13 2007 Shad L. Lords <[email protected]> 4.18.0-43
- Adjust perm for dhcpd.conf again [SME: 2715]
* Thu Apr 12 2007 Shad L. Lords <[email protected]> 4.18.0-42
- Put usbback patch back in. [SME: 2483]
* Thu Apr 12 2007 Stephen Noble <[email protected]> 4.18.0-41
- Remove enable slocate patch [SME: 102]
* Thu Apr 12 2007 Stephen Noble <[email protected]> 4.18.0-40
- Change Try Again to gettext(Back) in perform backup [SME: 2483]
* Thu Apr 12 2007 Stephen Noble <[email protected]> 4.18.0-39
- Enable slocate in /etc/updatedb.conf [SME: 102]
* Wed Apr 11 2007 Stephen Noble <[email protected]> 4.18.0-38
- Make console text consistent 'Please stand by' [SME: 2493]
* Wed Apr 11 2007 Stephen Noble <[email protected]> 4.18.0-37
- Fix missing en-au & en-nz language noise. [SME: 2093]
* Wed Apr 11 2007 Stephen Noble <[email protected]> 4.18.0-36
- Fix missing list items for console [SME: 2642]
* Mon Apr 09 2007 Shad L. Lords <[email protected]> 4.18.0-35
- Don't attempt to add_raid_device if no raid [SME: 2484]
* Fri Apr 06 2007 Shad L. Lords <[email protected]> 4.18.0-34
- Add fix for perms on dhcpd.conf file [SME: 2715]
* Fri Apr 06 2007 Shad L. Lords <[email protected]> 4.18.0-33
- Remove fix for ftpusers. Belongs in e-smith-proftpd. [SME: 2841]
* Fri Apr 06 2007 Shad L. Lords <[email protected]> 4.18.0-32
- Fix permissions on ftpusers file [SME: 2841]
- Fix permissions on pwauth file [SME: 2842]
* Thu Apr 05 2007 Shad L. Lords <[email protected]> 4.18.0-31
- Simplify depmod call in conf-modules [SME: 2554]
* Wed Apr 04 2007 Charlie Brady <[email protected]> 4.18.0-30
- Fix login pam configuration file. TODO - expand the template
during bootstrap-console-save. [SME: 2831]
* Mon Mar 26 2007 Charlie Brady <[email protected]> 4.18.0-29
- Add rotate_timestamped_logfiles action, split from
generic_template_expand. [SME: 2795]
* Thu Mar 22 2007 Shad L. Lords <[email protected]> 4.18.0-28
- Fix rc.e-smith to work with el4 and el5 [SME: 2510]
* Mon Mar 19 2007 Shad L. Lords <[email protected]> 4.18.0-27
- Add missing elements in prior pam updates [SME: 2551]
* Mon Mar 19 2007 Shad L. Lords <[email protected]> 4.18.0-26
- Update pam_stack to new include for el5 [SME: 2551]
* Thu Mar 08 2007 Gavin Weight <[email protected]> 4.18.0-25
- Fix missing en-gb language noise. [SME: 2633]
* Thu Mar 08 2007 Shad L. Lords <[email protected]> 4.18.0-24
- Call cropLeft function correctly in crt expansion [SME: 1689]
* Wed Mar 07 2007 Shad L. Lords <[email protected]> 4.18.0-23
- Make elinks display correctly with xterm display [SME: 444]
* Wed Mar 07 2007 Shad L. Lords <[email protected]> 4.18.0-22
- Add db override for crt common name [SME: 1689]
* Wed Mar 07 2007 Shad L. Lords <[email protected]> 4.18.0-21
- Default adding drive to raid to no [SME: 2644]
* Tue Mar 06 2007 Shad L. Lords <[email protected]> 4.18.0-20
- Allow nics to swap if different LAN chosen [SME: 2612]
* Tue Mar 06 2007 Shad L. Lords <[email protected]> 4.18.0-19
- Default WAN NIC to the *other* NIC than the one selected for LAN [SME: 2612]
* Tue Mar 06 2007 Charlie Brady <[email protected]> 4.18.0-18
- Combine two similar loops in selectEthernet and break overly
long string constant. [SME: 2612]
* Tue Mar 06 2007 Shad L. Lords <[email protected]> 4.18.0-17
- Fix network selection dialog to include all drivers. [SME: 2612]
* Thu Mar 01 2007 Charlie Brady <[email protected]> 4.18.0-16
- Fix run.static file in wan service directory. [SME: 2580]
* Fri Feb 23 2007 Shad L. Lords <[email protected]> 4.18.0-15
- Fix glob for selecting backup devices. [SME: 2521]
* Fri Feb 23 2007 Shad L. Lords <[email protected]> 4.18.0-14
- User new console infobox for console backup. [SME: 2533]
* Thu Feb 22 2007 Charlie Brady <[email protected]> 4.18.0-13
- Use new esmith::console::infobox widget in console. [SME: 2533]
* Fri Feb 16 2007 Shad L. Lords <[email protected]> 4.18.0-12
- Change runsvctrl to sv to support runit v1.7.x
* Fri Feb 16 2007 Charlie Brady <[email protected]> 4.18.0-11
- Restate microcode_ctl/irqbalance/cpuspeed dependencies. [SME: 2490]
* Sun Feb 11 2007 Shad L. Lords <[email protected]> 4.18.0-10
- Set db value for external ip before expanding templates [SME: 1977]
* Sun Feb 11 2007 Shad L. Lords <[email protected]> 4.18.0-9
- Do better detection of possible devices for backup/restore [SME: 2317]
* Sun Feb 11 2007 Shad L. Lords <[email protected]> 4.18.0-8
- Set ENV{HOME} so mysql dump works for backup [SME: 2412]
* Wed Feb 07 2007 Charlie Brady <[email protected]> 4.18.0-7
- Remove unused remnant dhcpcd templates. [SME: 2445]
* Wed Feb 07 2007 Charlie Brady <[email protected]> 4.18.0-6
- Configure elinks to obey cache control directives. I have
no idea why that would not be the default! [SME: 2443]
* Tue Jan 30 2007 Shad L. Lords <[email protected]> 4.18.0-5
- Ensure gateway dev is correct for server-only [SME: 2404]
* Mon Jan 29 2007 Shad L. Lords <[email protected]> 4.18.0-4
- Add cancel button to backup/restore panels [SME: 2393]
* Mon Jan 29 2007 Shad L. Lords <[email protected]> 4.18.0-3
- Add console backup to USB [SME: 2317]
* Sun Jan 28 2007 Shad L. Lords <[email protected]> 4.18.0-2
- Fix backtitle for saving changes [SME: 2328]
* Fri Jan 26 2007 Shad L. Lords <[email protected]> 4.18.0-1
- Roll stable stream. [SME: 2328]
* Tue Jan 23 2007 Charlie Brady <[email protected]> 4.17.2-8
- Remove unused ifcfg-log:0 templates. [SME: 2368]
* Tue Jan 23 2007 Charlie Brady <[email protected]> 4.17.2-7
- Add template fragments to allow forcing of ethernet negotiation
parameters [SME: 2362]
* Tue Jan 23 2007 Charlie Brady <[email protected]> 4.17.2-6
- Remove unused pam and abl templates (remnants of some stuff I
was prototyping).
* Fri Jan 19 2007 Shad L. Lords <[email protected]> 4.17.2-5
- [Forward-ported from 4.17.0]
- Refactor console code considerably, and add restore from CDROM/USB
backup capability to console.
- Remove deprecated %conf use in console. [SME: 1856]
* Fri Jan 19 2007 Shad L. Lords <[email protected]> 4.17.2-4
- [Ported from e-smith-base+ldap]
- Add support for use of pam_tally and/or pam_abl modules. Both
are disabled by default.
- Update /etc/pam.d/{ftp,passwd} templates.
- Add template for /etc/pam.d/system-auth.
* Fri Jan 19 2007 Shad L. Lords <[email protected]> 4.17.2-3
- [Forward-ported from 4.17.0]
- Move masq fragments to e-smith-packetfilter rpm.
* Fri Jan 19 2007 Shad L. Lords <[email protected]> 4.17.2-2
- [Forward-ported from 4.17.0]
- Remove server-manager templates and scripts - move to e-smith-manager.
[SME: 2023]
* Fri Jan 19 2007 Shad L. Lords <[email protected]> 4.17.2-1
- [Forward-ported from 4.17.0]
- Combine dhcp client, pppoe, dialup and static WAN connections into
"wan" service. [SME 1795]
* Fri Jan 19 2007 Shad L. Lords <[email protected]> 4.17.2-0
- Make new development stream. Based from 4.16.0-39.
* Sun Jan 14 2007 Shad L. Lords <[email protected]> 4.16.0-39
- [Back-port from 4.17.0-23]
- Add admin email forwarding to modify user panel [SME: 827]
* Sat Jan 13 2007 Shad L. Lords <[email protected]> 4.16.0-38
- [Back-port from 4.17.0-22]
- Fix last patch so that data is pulled correctly [SME: 1034]
* Sat Jan 13 2007 Shad L. Lords <[email protected]> 4.16.0-37
- [Back-port from 4.17.0-21]
- Make purge-old-logs configurable via db [SME: 1034]
* Wed Jan 10 2007 Shad L. Lords <[email protected]> 4.16.0-36
- [Back-port from 4.17.0-20]
- Don't regenerate key and only regenerate crt when expired. [SME: 2035]
* Tue Dec 26 2006 Gordon Rowell <[email protected]> 4.16.0-35
- [Back-port from 4.17.0-19]
- And mark admin_raidreport as only available for local mail [SME: 2139]
* Tue Dec 26 2006 Gordon Rowell <[email protected]> 4.16.0-34
- [Back-port from 4.17.0-17, 4.17.0-18]
- Send raidmonitor output to admin_raidreport pseudonym [SME: 2139]
- And mark admin_raidreport as non-Removable [SME: 2139]
* Sat Dec 23 2006 Shad L. Lords <[email protected]> 4.16.0-33
- Disable raid based on /proc/partitions (which is dynamic) instead
of grub/device.map (which is static) [SME: 2131]
* Fri Dec 22 2006 Shad L. Lords <[email protected]> 4.16.0-32
- Check device size after calculating space needed. [SME: 2131]
* Fri Dec 08 2006 Shad L. Lords <[email protected]> 4.16.0-31
- Create partitions in order of size. This makes sure boot is first and
/ is last. Also last partitions fills all available space making resizing
easier. [SME: 2131]
* Thu Dec 07 2006 Shad L. Lords <[email protected]>
- Update to new release naming. No functional changes.
- Make Packager generic
* Tue Dec 05 2006 Shad L. Lords <[email protected]> 4.16.0-30
- Update manage raid console functions to handle all raid types [SME: 2131]
* Tue Nov 21 2006 Charlie Brady <[email protected]> 4.16.0-29
- Fix warning from dhclient.conf template expansion.
* Wed Aug 30 2006 Charlie Brady <[email protected]> 4.16.0-28
- Add missing LocalModule for mod_proxy_http to admin apache conf.
[SME: 1853]
* Fri Jul 14 2006 Charlie Brady <[email protected]> 4.16.0-27
- Prevent daily regeneration of SSL cert if City/Company/Department are
empty. [SME: 1602]
* Wed Jun 28 2006 Gavin Weight <[email protected]> 4.16.0-26
- Menu text in console is incorrect for RAID5 installs. [SME: 404]
* Wed Jun 14 2006 Gavin Weight <[email protected]> 4.16.0-25
- Modify user create page to show henry:miller not henry_miller. [SME: 531]
* Fri Jun 9 2006 Gavin Weight <[email protected]> 4.16.0-24
- Remove lines for creating symlink to statusreport from spec file. [SME: 450]
* Mon Jun 6 2006 Gordon Rowell <[email protected]> 4.16.0-23
- Allow for admin account when locking null passwords, and perform
check in post-upgrade so that the password screen will be presented
after the reboot [SME: 1529]
* Mon Jun 6 2006 Gordon Rowell <[email protected]> 4.16.0-22
- Correct argument ordering in last change [SME: 790, SME: 1541]
* Sun May 28 2006 Charlie Brady <[email protected]> 4.16.0-21
- Increase cert serial number when new certificate is generated. [SME: 790]
* Sun May 28 2006 Charlie Brady <[email protected]> 4.16.0-20
- Change ssl.crt template so that cert is regenerated if issuer information
has changed. [SME: 1484]
* Thu Apr 27 2006 Gavin Weight <[email protected]> 4.16.0-19
- Change default shutdown value from shutdown to reboot. [SME: 1320]
* Sun Apr 23 2006 Charlie Brady <[email protected]> 4.16.0-18
- Fix syntax error introduced in last change (and reuse $rc and $choice in
raidManage.pl). [SME: 1285,1300]
* Fri Apr 21 2006 Gordon Rowell <[email protected]> 4.16.0-17
- Force masq service to enabled for servergateway modes, but
leave at current setting for serveronly. Revises -09 change [SME: 1209]
* Wed Apr 19 2006 Charlie Brady <[email protected]> 4.16.0-16
- Add big warning about wiping disk to raid management screen.
[SME: 1285]
* Tue Apr 18 2006 Charlie Brady <[email protected]> 4.16.0-15
- Ensure that rmmod-bonding doesn't return error status if
bonding is not enabled (e.g. during upgrade) [SME: 935]
* Tue Apr 18 2006 Charlie Brady <[email protected]> 4.16.0-14
- Avoid warning from NICBondingOptions migrate fragment. [SME: 1271]
* Tue Apr 18 2006 Gordon Rowell <[email protected]> 4.16.0-13
- Always save ssh property changes, even if sshd is disabled [SME: 1210]
* Thu Apr 13 2006 Charlie Brady <[email protected]> 4.16.0-12
- Don't run kudzu at every bootup. [SME: 727]
* Tue Apr 11 2006 Charlie Brady <[email protected]> 4.16.0-11
- More fixes to dhclient configuration (courtesy of Richard Schiffelers).
[SME: 881]
* Mon Apr 10 2006 Charlie Brady <[email protected]> 4.16.0-10
- Fixes to dhclient configuration (courtesy of Richard Schiffelers).
[SME: 881]
* Thu Apr 6 2006 Gordon Rowell <[email protected]> 4.16.0-09
- Enable the masq service to ensure that installs and upgrades
are consistent. If someone really wants to disable it, they can
add a force fragment [SME: 1209]
* Thu Apr 6 2006 Gordon Rowell <[email protected]> 4.16.0-08
- Lock accounts with bad SMB passwords [SME: 1193]
* Thu Apr 6 2006 Gordon Rowell <[email protected]> 4.16.0-07
- Revert password length restriction changes [SME: 1193]
* Thu Apr 6 2006 Gordon Rowell <[email protected]> 4.16.0-06
- Adjust plural in page title in last patch [SME: 1193]
* Thu Apr 6 2006 Gordon Rowell <[email protected]> 4.16.0-05
- Adjust console logic for 14 character password restriction [SME: 1193]
* Wed Apr 5 2006 Gordon Rowell <[email protected]> 4.16.0-04
- Only process 'network' entries in route-eth0 template [SME: 1182]
* Wed Apr 5 2006 Gordon Rowell <[email protected]> 4.16.0-03
- Restrict passwords to 14 characters [SME: 1193]
* Tue Mar 14 2006 Gordon Rowell <[email protected]> 4.16.0-02
- Rename anaconda logs, but leave a symlink. Do nothing if the log
is already a symlink or missing [SME: 808]
* Tue Mar 14 2006 Charlie Brady <[email protected]> 4.16.0-01
- Roll stable stream version. [SME: 1016]
* Tue Mar 14 2006 Gordon Rowell <[email protected]> 4.15.9-20
- Ensure that each user has a Shell property in post-upgrade.
If they didn't have one before, set it to the current value in
/etc/passwd. [SME: 859]
* Tue Mar 14 2006 Gordon Rowell <[email protected]> 4.15.9-19
- Copy anaconda logs instead of renaming them in post-upgrade [SME: 808]
- Adjust timestamp of copied logs to logfiles2timestamp format [SME: 808]
* Mon Mar 13 2006 Gordon Rowell <[email protected]> 4.15.9-18
- Change modSSL to be private in Private Server and Gateway mode [SME: 328]
* Mon Mar 13 2006 Gordon Rowell <[email protected]> 4.15.9-17
- And remove now redundant calls to wherenext [SME: 986]
* Fri Mar 10 2006 Charlie Brady <[email protected]> 4.15.9-16
- Fix FM page name (FirstPage => First) in a few places. [SME: 986]
* Tue Mar 7 2006 Gordon Rowell <[email protected]> 4.15.9-15
- Correct typo in -13 change which hid message [SME: 964]
* Tue Mar 7 2006 Gordon Rowell <[email protected]> 4.15.9-14
- Display a message for single disk installs which catches that
case and tells people that they can add a second disk and produce
a mirrored pair [SME: 958]
* Tue Mar 7 2006 Gordon Rowell <[email protected]> 4.15.9-13
- Display a nicer message when a spare disk is available to be
added to the pair [SME: 964]
- Blank line for consistency with other messages [SME: 964]
* Tue Mar 7 2006 Gordon Rowell <[email protected]> 4.15.9-12
- Check whether a resync is in progress so we don't state that
intervention is required when it is not [SME: 958]
* Tue Mar 7 2006 Gordon Rowell <[email protected]> 4.15.9-11
- Check whether destination drive of add_mirror is already part
of a RAID device. If so, complain and exit [SME: 870]
- Also ensure that /sbin is in the PATH
* Sun Mar 5 2006 Charlie Brady <[email protected]> 4.15.9-10
- Fixes to dhclient configuration. [SME: 881]
* Fri Mar 03 2006 Mark Knox <[email protected]> 4.15.9-09
- Added NIC Bonding options screen in console [SME: 935]
- Migrate old NICBondingOptions to new defaults, and added new default
options [SME: 935]
- rmmod bonding.ko in bootstrap-console-save so new options work
without extra reboot [SME: 935]
* Wed Mar 01 2006 Mark Knox <[email protected]> 4.15.9-08
- Allow NICBondingOptions in 10bonding template fragment [SME: 918]
* Wed Mar 01 2006 Charlie Brady <[email protected]> 4.15.9-07
- Bump pppoe run script mlimit from 10M to 25M. [SME: 907]
* Fri Feb 24 2006 Gordon Rowell <[email protected]> 4.15.9-06
- Re-do -04 change as a patch so it sticks [SME: 863]
* Thu Feb 23 2006 Charlie Brady <[email protected]> 4.15.9-05
- Add templates for dhclient configuration file. [SME: 881]
* Wed Feb 22 2006 Charlie Brady <[email protected]> 4.15.9-04
- Remove default fragment for AdminEmail [SME: 863]
* Mon Feb 21 2006 Gordon Rowell <[email protected]> 4.15.9-03
- Change 'Reconfigure' to lower case in menu [SME: 2]
* Mon Feb 20 2006 Gordon Rowell <[email protected]> 4.15.9-02
- Add requires for mdadm. We use it in the console and raid monitor
and it won't get installed for 5.x upgrades [SME: 767]
* Fri Feb 17 2006 Gordon Rowell <[email protected]> 4.15.9-01
- Roll patches to 4.15.8-60
- Trim changelog before 4.15.3-01 [SME: 828]
* Fri Feb 17 2006 Gordon Rowell <[email protected]> 4.15.8-60
- Also rotate /var/log/anaconda.{log,syslog} in post-upgrade [SME: 808]
* Fri Feb 17 2006 Gordon Rowell <[email protected]> 4.15.8-59
- Change 'Reconfigure' to lower case in -57 change [SME: 2]
* Fri Feb 17 2006 Gordon Rowell <[email protected]> 4.15.8-58
- Add /root/upgrade.log and /root/upgrade.log.syslog to
logfiles2timestamp in post-upgrade event so we preserve
them across multiple upgrades [SME: 808]
* Fri Feb 17 2006 Gavin Weight <[email protected]> 4.15.8-57
- Added Reconfigure and Reboot option in console, changed
main console menu to reflect Reconfigure option [SME: 2]
* Thu Feb 16 2006 Gordon Rowell <[email protected]> 4.15.8-56
- Default EmailForward to 'local' in case that part of the panel
is hidden from view [SME: 704]
* Thu Feb 16 2006 Gordon Rowell <[email protected]> 4.15.8-55
- Adjust console title bar to 'SME Server' [SME: 726]
- Change title on "Choose administrator password" screens
* Mon Feb 13 2006 Mark Knox <[email protected]> 4.15.8-54
- Set EthernetDriver2 property when bonding is enabled [SME: 776]
* Mon Feb 13 2006 Gordon Rowell <[email protected]> 4.15.8-53
- Remove cpuspeed.contrib ClearCase droppings [SME: 754]
* Sun Feb 12 2006 Charlie Brady <[email protected]> 4.15.8-52
- Start bootstrap-console earlier - in particular before raidmonitor.
Don't try to restart 'random'. [SME: 743]
* Sun Feb 12 2006 Charlie Brady <[email protected]> 4.15.8-51
- Obsolete keytable service. [SME: 746]
* Sat Feb 11 2006 Shad L. Lords <[email protected]> 4.15.8-50
- Run kudzu -q from inittab [SME: 727]
* Tue Feb 9 2006 Charlie Brady <[email protected]> 4.15.8-49
- Make bootp support optional, defaulting to 'deny'. [SME: 660]
* Thu Feb 9 2006 Gavin Weight <[email protected]> 4.15.8-48
- Removed the online-manual. [SME: 407]
* Thu Feb 9 2006 Gordon Rowell <[email protected]> 4.15.8-47
- Hide email forwarding options on useraccounts page if there is