-
Notifications
You must be signed in to change notification settings - Fork 0
/
e-smith-hosts.spec
1060 lines (830 loc) · 35.9 KB
/
e-smith-hosts.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-hosts.spec,v 1.19 2010/11/29 17:35:51 slords Exp $
Summary: e-smith module for managing hosts entries
Name: e-smith-hosts
%define version 2.2.0
%define release 8
Version: %{version}
Release: %{release}%{?dist}
License: GPL
Group: Networking/Daemons
Source: %{name}-%{version}.tar.gz
Patch1: e-smith-hosts-2.2.0_allow_cname.patch
Patch2: e-smith-hosts-2.2.0-host_ip_validator.patch
Patch3: e-smith-hosts-2.2.0-trap_croak.patch
Patch4: e-smith-hosts-2.2.0-ip-fqdn.patch
Patch5: e-smith-hosts-2.2.0-ip-fqdn2.patch
Patch6: e-smith-hosts-2.2.0-fix-comment.patch
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
Requires: e-smith-base
Requires: e-smith-lib >= 1.15.1-19
Requires: e-smith-test >= 0.1.14
Requires: e-smith-formmagick >= 1.4.0-12
Requires: e-smith-tinydns >= 2.2.0-2
BuildRequires: e-smith-devtools
BuildArchitectures: noarch
AutoReqProv: no
%description
e-smith module to allow the configuration of the hosts database, which is
used to build the DNS and DHCP configuration.
%changelog
* Mon Nov 29 2010 Shad L. Lords <[email protected]> 2.2.0-8.sme
- Sanitize comment field in tables and edit form [SME: 6408]
* Mon Nov 29 2010 Jonathan Martens <[email protected]> 2.2.0-7.sme
- Fix double speechmarks in comment field in hostname panel [SME: 6408]
* Wed Oct 20 2010 Jonathan Martens <[email protected]> 2.2.0-6.sme
- Update some more occurrences to also reflect the option of a FQDN [SME: 6296]
* Tue Oct 19 2010 Jonathan Martens <[email protected]> 2.2.0-5.sme
- Update textbox description to also reflect the option of a FQDN [SME: 6296]
* Sun Sep 25 2010 Shad L. Lords <[email protected]> 2.2.0-4.sme
- Trap croak inside Net::IPv4Addr::ipv4_in_network [SME: 6288]
* Sun Sep 25 2010 Shad L. Lords <[email protected]> 2.2.0-3.sme
- Add validator back for ip or cname entry [SME: 3132]
* Thu Jul 29 2010 Filippo Carletti <[email protected]> 2.2.0-2.sme
- Allow use of CNAME in remote hosts [SME: 3132]
* Tue Oct 7 2008 Shad L. Lords <[email protected]> 2.2.0-1.sme
- Roll new stream to separate sme7/sme8 trees [SME: 4633]
* Tue Jul 8 2008 Jonathan Martens <[email protected]> 1.14.0-14
- Move single occurence HOSTTYPE back to e-smith-hosts
* Sun Apr 27 2008 Jonathan Martens <[email protected]> 1.14.0-13
- Add common <base> tags to e-smith-formmagick's general [SME: 4280]
* Sun Feb 10 2008 Stephen Noble <[email protected]> 1.14.0-12
- Remove duplicate <base> entries [SME: 3895]
* Sat Feb 09 2008 Stephen Noble <[email protected]> 1.14.0-11
- Remove empty lexicon entry [SME: 3880]
* Thu Jul 12 2007 Charlie Brady <[email protected]> 1.14.0-10
- Remove implicit use of GLOBAL_IP lexicon entries. [SME: 3135]
* Fri Jul 06 2007 Charlie Brady <[email protected]> 1.14.0-9
- Remove more remnant lexicon entries. [SME: 3135]
* Fri Jul 06 2007 Charlie Brady <[email protected]> 1.14.0-8
- Remove remnant DNS publication code and lexicon entries. [SME: 3135]
* Sun Apr 29 2007 Shad L. Lords <[email protected]>
- Clean up spec so package can be built by koji/plague
* Mon Feb 19 2007 Stephen Noble <[email protected]> 1.14.0-7
- Fix text with a space [SME: 2246]
* Sat Jan 13 2007 Shad L. Lords <[email protected]> 1.14.0-6
- Make success/failure messages standard [SME: 2290]
* Wed Jan 10 2007 Shad L. Lords <[email protected]> 1.14.0-5
- Add comment to host entries. [SME: 878]
* Thu Dec 07 2006 Shad L. Lords <[email protected]>
- Update to new release naming. No functional changes.
- Make Packager generic
* Thu Jun 22 2006 Charlie Brady <[email protected]> 1.14.0-03
- Fix display of hosts table for additional domains. [SME: 1630, 1374]
* Wed Jun 14 2006 Gavin Weight <[email protected]> 1.14.0-02
- Improved layout applied to Hostnames and addresses. [SME: 1374]
* Wed Mar 15 2006 Charlie Brady <[email protected]> 1.14.0-01
- Roll stable stream version. [SME: 1016]
* Tue Jan 24 2006 Gordon Rowell <[email protected]> 1.13.3-04
- Fix purge-domain code relating to pseudonym cleanup [SME: 515]
* Wed Nov 30 2005 Gordon Rowell <[email protected]> 1.13.3-03
- Bump release number only
* Fri Nov 4 2005 Charlie Brady <[email protected]>
- [1.13.3-02]
- s/local_ip/global_ip/ when setting host to type Remote.
Ensure that Remote hosts don't have local_ip set.
[SF: 1293449]
- Add missing "IP_ADDRESS" localisation.
- Remove vestigial print_global_ip_field() function.
- Deal gracefully with missing Nameservers property of domains.
* Fri Oct 14 2005 Gordon Rowell <[email protected]>
- [1.13.3-01]
- Remove L10Ns from base packages [SF: 1309520]
* Fri Oct 14 2005 Gordon Rowell <[email protected]>
- [1.13.2-01]
- New dev stream before relocating L10Ns
* Fri Sep 30 2005 Gordon Rowell <[email protected]>
- [1.13.1-15]
- Added Italian L10N - Thanks Filippo Carletti [SF: 1309266]
* Mon Sep 26 2005 Gordon Rowell <[email protected]>
- [1.13.1-14]
- Only display the DNS Forwarder message if there are no domains
set with Nameservers==localhost [SF: 1303422]
* Mon Sep 26 2005 Gordon Rowell <[email protected]>
- [1.13.1-13]
- Allow dnscache{Forwarder} to be configured, but empty [SF: 1303422]
* Mon Sep 26 2005 Gordon Rowell <[email protected]>
- [1.13.1-12]
- Added German L10N - Thanks Dietmar Berteld [SF: 1293325]
* Mon Aug 29 2005 Charlie Brady <[email protected]>
- [1.13.1-11]
- Avoid double reformatting of old host records, which breaks HostType == self
records. [SF: 1275450]
* Mon Aug 15 2005 Charlie Brady <[email protected]>
- [1.13.1-10]
- Remove some remnant ServiceLink code
- Replace conf-migrate-hosts with some migrate fragments for the host db
- Restart dnscache during host-{create,delete,modify} events, so that
cached information on hostnames is purged. [SF: 1243418,1243423]
* Tue Jul 19 2005 Charlie Brady <[email protected]>
- [1.13.1-09]
- Hostnames panel updates from Shad Lords.
* Tue Jul 19 2005 Charlie Brady <[email protected]>
- [1.13.1-08]
- Complete the update to current db access APIs - a few esmith::db and
esmith::config calls were found hiding. Rewrite conf-hostsdb as simple
shell script. [SF: 1216546]
* Mon Jul 18 2005 Charlie Brady <[email protected]>
- [1.13.1-07]
- Greatly simplify delete-hosts, and rename to purge-domain. Purge user@domain
pseudonyms for deleted domains. [SF: 1193570 (Gordon)]
* Mon Jul 18 2005 Charlie Brady <[email protected]>
- [1.13.1-06]
- Update to current db access APIs, in readiness for move of dbs to private
directory. [SF: 1216546 (Shad)]
* Mon Jul 18 2005 Charlie Brady <[email protected]>
- [1.13.1-05]
- Fix to ensure panel returns status if delete fails [SF: 1200284 (Shad)]
* Thu Jul 7 2005 Charlie Brady <[email protected]>
- [1.13.1-04]
- Include Shad's panel changes (publishglobal and formmagick patches)
from e-smith-hosts-1.13.0-02sme04. [SF: 1234280]
- Avoid multiple re-openings of config db in panel code.
* Thu Jul 7 2005 Charlie Brady <[email protected]>
- [1.13.1-03]
- Move all host db manipulation actions to before template
expansions (in all events, not just bootstrap-console-save).
[SF: 1234255]
* Thu Apr 14 2005 Charlie Brady <[email protected]>
- [1.13.1-02]
- Use services2adjust symlink to reconfigure tinydns (tinydns-conf
is obsolete).
- Move all host db manipulation actions to before template
expansions in bootstrap-console-save.
* Fri Apr 1 2005 Charlie Brady <[email protected]>
- [1.13.1-01]
- Roll new dev stream - 1.13.1
* Tue Mar 8 2005 Charlie Brady <[email protected]>
- [1.13.0-06]
- Use generic_template_expand action in place of restart-dhcpd.
Update e-smith-lib dependency. [MN00064130]
* Mon Mar 7 2005 Charlie Brady <[email protected]>
- [1.13.0-05]
- Fix RE used in untainting of hostname. [charlieb MN00050161]
* Tue Jan 25 2005 Charlie Brady <[email protected]>
- [1.13.0-04]
- Only check if host exists on create not modify. [MN00065708]
- Remove stray ServiceLink action symlink. [MN00064757]
* Wed Nov 10 2004 Charlie Brady <[email protected]>
- [1.13.0-03]
- Untaint hostname before using in system(). [charlieb MN00050161]
* Tue May 25 2004 Michael Soulier <[email protected]>
- [1.13.0-02]
- Fixing typo that prevented H&A panel from being disabled if a DNS forwarder
was in use. [msoulier MN00034840]
* Tue May 25 2004 Michael Soulier <[email protected]>
- [1.13.0-01]
- rolling to dev stream - 1.13.0
* Thu Feb 19 2004 Michael Soulier <[email protected]>
- [1.12.0-04]
- Added a check in more_options() to reject the hostname if it's a dup.
[msoulier dpar-20864]
* Thu Feb 19 2004 Michael Soulier <[email protected]>
- [1.12.0-03]
- Added further validation of the local IP address, to prevent the user using
the external or internal interface IP, the gateway IP, or the loopback
interface. [msoulier 8887]
- Added further validation of a host being added as local, to prevent users
adding "local" hosts with are not local. [msoulier dpar-20865]
* Tue Aug 19 2003 Michael Soulier <[email protected]>
- [1.12.0-02]
- Fixed persistence problem with publish_globally field. [msoulier 9427]
* Thu Jun 26 2003 Charlie Brady <[email protected]>
- [1.12.0-01]
- Changing version to stable stream number - 1.12.0
* Thu Jun 12 2003 Gordon Rowell <[email protected]>
- [1.11.1-01]
- Added order to migrate fragments [gordonr 9015]
* Fri Jun 6 2003 Gordon Rowell <[email protected]>
- [1.11.0-32]
- Move force to lowercase to the correct place so we don't just bark
if upper case hostnames are entered - we squash them to lower case
before confirming [gordonr 8939]
- Correct the migrate fragment [gordonr 8939]
* Fri Jun 6 2003 Gordon Rowell <[email protected]>
- [1.11.0-31]
- Force hostnames to lowercase on h&a panel [gordonr 8939]
- Sanitise hostsdb for old non-lowercase names (WIP) [gordonr 8939]
* Fri May 30 2003 Michael Soulier <[email protected]>
- [1.11.0-30]
- Updated delete-hosts to use esmith::HostsDB, and removed redundant bind db
handling. [msoulier 8809]
- Updated delete-hosts to scan the entire hostsdb, cross-referencing with the
domainsdb, and remove any host for a domain that we do not manage.
[msoulier 8809]
- Added links to delete-hosts from bootstrap-console-save and
registration-clear. [msoulier 8809]
* Tue May 20 2003 Michael Soulier <[email protected]>
- [1.11.0-29]
- Fixed indentation in lexicon files, and changed "Create/modify" to "Create
or modify" in all lexicon files. [msoulier 8543]
* Tue May 6 2003 Lijie Deng <[email protected]>
- [1.11.0-28]
- Add Spanish lexicon for hostentries [lijied 3793]
* Tue Apr 29 2003 Gordon Rowell <[email protected]>
- [1.11.0-27]
- Removed duplicate </trans> tag [gordonr 8613]
* Thu Apr 24 2003 Lijie Deng <[email protected]>
- [1.11.0-26]
- Deleted FIRSTPAGE_DESC text [lijied 8493]
* Tue Apr 22 2003 Lijie Deng <[email protected]>
- [1.11.0-25]
- Removed inline in text [lijied 7949]
* Mon Apr 21 2003 Lijie Deng <[email protected]>
- [1.11.0-24]
- Standardize Add/Save button name [lijied 7921]
* Tue Apr 15 2003 Gordon Rowell <[email protected]>
- [1.11.0-23]
- Added fr entry for previous change [gordonr 3722]
* Mon Apr 14 2003 Gordon Rowell <[email protected]>
- [1.11.0-22]
- Don't display H&A panel if DNS forwarder configured [gordonr 3722]
* Wed Apr 9 2003 Gordon Rowell <[email protected]>
- [1.11.0-21]
- Panel cleanup now all domains are in domains db [gordonr 8097]
* Tue Apr 8 2003 Lijie Deng <[email protected]>
- [1.11.0-20]
- Standardized the button name [lijied 7921]
* Fri Apr 4 2003 Lijie Deng <[email protected]>
- [1.11.0-19]
- Change $q->table to $q->start_table where necessary [lijied 8034]
* Fri Apr 4 2003 Charlie Brady <[email protected]>
- [1.11.0-18]
- Add tinydns-conf links in place of previous named-conf ones.
[charlieb 8071]
* Thu Apr 3 2003 Lijie Deng <[email protected]>
- [1.11.0-17]
- Removed 'Mitel Networks SME Server' branding [lijied 8016]
* Tue Apr 1 2003 Gordon Rowell <[email protected]>
- [1.11.0-16]
- Removed named links [gordonr 7659]
* Tue Apr 1 2003 Gordon Rowell <[email protected]>
- [1.11.0-15]
- Removed conf-dhcpd symlinks - now done in run script [gordonr 7771]
* Mon Mar 31 2003 Mike Dickson <[email protected]>
- [1.11.0-14]
- fixed the "Action" column to be several comns instead of one [miked 7761]
* Thu Mar 27 2003 Lijie Deng <[email protected]>
- [1.11.0-13]
- Modified French lexicon to use lang="fr", rename the lexicon
directory to fr [lijied 6787]
* Thu Mar 6 2003 Lijie Deng <[email protected]>
- [1.11.0-12]
- Modified hostentries panel order [lijied 7356]
* Tue Mar 4 2003 Lijie Deng <[email protected]>
- [1.11.0-11]
- Split en-us lexicon from hostentries panel [lijied 4030]
* Fri Feb 28 2003 Lijie Deng <[email protected]>
- [1.11.0-10]
- Added French lexicon for hostsentries. [lijied 5003]
* Mon Feb 24 2003 Michael Soulier <[email protected]>
- [1.11.0-09]
- Remove use of LocalDomainPrefix. [msoulier 4812]
* Fri Feb 21 2003 Charlie Brady <[email protected]>
- [1.11.0-08]
- Remove deprecated WebServerName setting from canned test data. [charlieb 6861]
* Sat Jan 25 2003 Mike Dickson <[email protected]>
- [1.11.0-07]
- added Action to the lexicon [miked 6363]
* Fri Dec 27 2002 Mike Dickson <[email protected]>
- [1.11.0-06]
- minor UI updates [miked 5494]
* Mon Dec 16 2002 Charlie Brady <[email protected]>
- [1.11.0-05]
- Fix problem with globally visible (published) external IPs [charlieb 5816]
* Mon Dec 9 2002 Mike Dickson <[email protected]>
- [1.11.0-04]
- ui update [miked 5494]
* Mon Dec 2 2002 Mike Dickson <[email protected]>
- [1.11.0-03]
- ui update [miked 5494
* Fri Nov 15 2002 Charlie Brady <[email protected]>
- [1.11.0-02]
- Removing explicit dependency on e-smith-named. [charlieb 4058]
* Fri Nov 15 2002 Charlie Brady <[email protected]>
- [1.11.0-01]
- Rolling development stream to 1.11.0
* Fri Oct 11 2002 Charlie Brady <[email protected]>
- [1.10.0-01]
- Roll to maintained version number to 1.10.0
* Fri Oct 11 2002 Charlie Brady <[email protected]>
- [1.9.0-11]
- Back out the check for duplicate hosts added at 1.9.0-04 - it prevents
any modification of existing hostnames. [charlieb 3813]
* Fri Sep 6 2002 Gordon Rowell <[email protected]>
- [1.9.0-10]
- Check return value of open on NetworkServicesDB [gordonr 4760]
* Fri Sep 6 2002 Gordon Rowell <[email protected]>
- [1.9.0-09]
- Make use of NetworkServicesDB.pm in conf-migrate-hosts [gordonr 4773]
* Fri Sep 6 2002 Gordon Rowell <[email protected]>
- [1.9.0-08]
- Remove auto-creation of LocalDomainPrefix on upgrades. An existing
value will be retained, but the implicit creation of e-smith.
or mitel-networks. for the local prefix no longer happens. [gordonr 4811]
* Thu Sep 5 2002 Mark Knox <[email protected]>
- [1.9.0-07]
- Added 3 missing lexicon entries [markk 3812]
* Wed Sep 4 2002 Mark Knox <[email protected]>
- [1.9.0-06]
- Fixed some problems with dhcp range validator [markk 4513]
* Mon Aug 26 2002 Mark Knox <[email protected]>
- [1.9.0-05]
- Improved logic for when to clear global IP [markk 3816]
* Mon Aug 26 2002 Mark Knox <[email protected]>
- [1.9.0-04]
- Check for duplicate host names [markk 3813]
* Fri Aug 23 2002 Charlie Brady <[email protected]>
- [1.9.0-03]
- Fix validator function from previous change [charlieb 4513]
* Fri Aug 23 2002 Charlie Brady <[email protected]>
- [1.9.0-02]
- Include validator to ensure that host IP is not in DHCP range [charlieb 4513]
* Wed Jun 5 2002 Charlie Brady <[email protected]>
- [1.9.0-01]
- Changing version to development stream number to 1.9.0
* Mon Jun 3 2002 Gordon Rowell <[email protected]>
- [1.8.6-01]
- Default for HostType is 'Self' [gordonr 3811]
* Mon Jun 3 2002 Gordon Rowell <[email protected]>
- [1.8.5-01]
- Relaxed regexp to match text: [a-z0-9][a-z0-9-]* [gordonr 3684]
* Mon Jun 3 2002 Gordon Rowell <[email protected]>
- [1.8.4-01]
- Validate that the (root of the) hostname matches [a-z][a-z0-9-]*
Remove unused open of the ConfigDB [gordonr 3684]
* Mon Jun 3 2002 Gordon Rowell <[email protected]>
- [1.8.3-01]
- Delete MACAddress when type is Remote
Delete RemoteIP when type is Local [gordonr 3684]
* Mon Jun 3 2002 Mark Knox <[email protected]>
- [1.8.2-01]
- Resolved more confusion with addresses not displaying, naming conventions,
delete non-essential fields in modification, and stop allowing change of
domain during modification. [markk 3684]
* Sat Jun 1 2002 Gordon Rowell <[email protected]>
- [1.8.1-01]
- Resolved a lot of confusion about HostType, Visbility, local and
remote hosts and global publishing. These were all mixed up.
TODO: Need to ensure that InternalIP and ExternalIP are deleted when
changing host types from Remote->Local->Self [gordonr 3684]
* Fri May 31 2002 Charlie Brady <[email protected]>
- [1.8.0-01]
- Changing version to maintained stream number to 1.8.0
* Fri May 31 2002 Kirrily Robert <[email protected]>
- [1.7.20-01]
- removed SL-specific service domain stuff, now just calls a routine
elsewhere [skud 3731]
* Fri May 31 2002 Kirrily Robert <[email protected]>
- [1.7.19-01]
- Now checking for SL service domain in panel [skud 3684]
* Fri May 31 2002 Kirrily Robert <[email protected]>
- [1.7.18-01]
- Made hosttyle (Local/Remote/Self) have first letter uppercase.
[skud 3684]
* Thu May 30 2002 Kirrily Robert <[email protected]>
- [1.7.17-01]
- Default all hostentries props to empty string to avoid "odd number of
elements in hash" warning and mixed up hosts config file. [skud 3684]
* Wed May 29 2002 Kirrily Robert <[email protected]>
- [1.7.16-01]
- Added hostname l10n for previous hostname/name fix [skud 3684]
* Wed May 29 2002 Kirrily Robert <[email protected]>
- [1.7.15-01]
- Fixed hostname/name CGI parameter mixup in hostentries.pm [skud 3684]
- Fixed ethernet address validation (should be allowed to be blank)
* Thu May 23 2002 Gordon Rowell <[email protected]>
- [1.7.14-01]
- RPM rebuild forced by cvsroot2rpm
* Fri May 17 2002 Mark Knox <[email protected]>
- [1.7.13-01]
- Added missing </entry> tag [markk 3430]
* Fri May 17 2002 Mark Knox <[email protected]>
- [1.7.12-01]
- Removed extra lexicon data after the </form> tag. [markk 3430]
* Thu May 16 2002 Kirrily Robert <[email protected]>
- [1.7.11-01]
- Added english localisation for NO_HOSTS_FOR_THIS_DOMAIN [skud #3429]
* Wed May 15 2002 Kirrily Robert <[email protected]>
- [1.7.10-01]
- Fixed broken links to hostentries.skud [skud #3430]
* Mon May 13 2002 Gordon Rowell <[email protected]>
- [1.7.9-01]
- Catch up with changes in action names in e-smith-named [gordonr 2733]
* Wed May 8 2002 Gordon Rowell <[email protected]>
- [1.7.8-01]
- Removed whitespace from nav bar entries. For some reason it resulted
in another Configuration group. Probably funkiness in the navigation
routine, but that's for ron. [gordonr 3155]
* Wed May 8 2002 Gordon Rowell <[email protected]>
- [1.7.7-01]
- removed dependency on esmith::NetworkServicesDB/ServiceLink-lib
[skud 3353]
* Tue May 7 2002 Gordon Rowell <[email protected]>
- [1.7.6-01]
- And fixed tests to pick up en-us [gordonr 3155]
* Tue May 7 2002 Gordon Rowell <[email protected]>
- [1.7.5-01]
- Lexicon en->en-us [gordonr 3155]
* Wed May 1 2002 Gordon Rowell <[email protected]>
- [1.7.4-01]
- esmith::AccountDB -> esmith::AccountsDB [schwern 3287]
* Tue Apr 30 2002 Gordon Rowell <[email protected]>
- [1.7.3-01]
- I18N'd version of hostentries [skud 3027]
- Nav bar entries for same [gordonr 3155]
* Fri Apr 19 2002 Gordon Rowell <[email protected]>
- [1.7.2-01]
- InternalIP & ExternalIPs now translated correctly from 4.1.2 style
hosts databases by conf-migrate-hosts (2495)
- Added 'wpad' alias for Windows proxy autodetection - thanks Damien Curtain
[gordonr 3073]
* Wed Feb 27 2002 Jason Miller <[email protected]>
- [1.7.1-01]
- Rolling to new version 1.7.1-01, includes all patches up to 1.7.0-01,
as part of testing that rpm2cvs was successfull
* Wed Feb 27 2002 Jason Miller <[email protected]>
- [1.7.0-01]
- rollRPM: Rolled version number to 1.7.0-01. Includes patches up to 1.6.0-02.
* Fri Jan 4 2002 Adrian Chung <[email protected]>
- [1.6.0-02]
- Adding 'proxy' to the list of hostnames added to hosts database.
- Use passed in visibility argument for systemName.FQDN rather than always
using 'Global'.
* Tue Dec 11 2001 Adrian Chung <[email protected]>
- [1.6.0-01]
- rollRPM: Rolled version number to 1.6.0-01. Includes patches up to 1.5.0-01.
* Fri Nov 23 2001 Tony Clayton <[email protected]>
- [1.5.0-01]
- rollRPM: Rolled version number to 1.5.0-01. Includes patches up to 1.4.0-05.
- s/march-networks/mitel-networks/ in conf-migrate-hosts
* Wed Nov 07 2001 Tony Clayton <[email protected]>
- [1.4.0-05]
- rebranding to Mitel Networks
* Wed Aug 22 2001 Gordon Rowell <[email protected]>
- [1.4.0-04]
- Well, one more branding change
* Tue Aug 21 2001 Gordon Rowell <[email protected]>
- [1.4.0-03]
- Final branding cleanup
* Fri Aug 17 2001 gordonr
- [1.4.0-02]
- Autorebuild by rebuildRPM
* Wed Aug 8 2001 Charlie Brady <[email protected]>
- [1.4.0-01]
- Rolled version number to 1.4.0-01. Includes patches upto 1.3.0-58.
* Tue Jul 31 2001 Jason Miller <[email protected]>
- [1.3.0-58]
- Update to hostentries panel to change url
* Tue Jul 31 2001 Jason Miller <[email protected]>
- [1.3.0-57]
- Update conf-migrate-hosts to change default LocalDomainPrefix value from
e-smith. to march-networks.
* Sun Jul 29 2001 Jason Miller <[email protected]>
- [1.3.0-56]
- Branding text changes to the hostentries web panel
* Wed Jul 18 2001 Jason Miller <[email protected]>
- [1.3.0-55]
- Updates to error message displays
* Wed Jul 18 2001 Jason Miller <[email protected]>
- [1.3.0-54]
- Split actions
* Fri Jul 6 2001 Peter Samuel <[email protected]>
- [1.3.0-53]
- Changed license to GPL
* Tue Jun 12 2001 Jason Miller <[email protected]>
- [1.3.0-52]
- Update to conf-migrate-hosts script to ignore hosts already in the new
format
* Thu Jun 07 2001 Jason Miller <[email protected]>
- [1.3.0-51]
- Fixed bug in create-default-hosts action
* Thu Jun 07 2001 Jason Miller <[email protected]>
- [1.3.0-50]
- Update to hostentries panel to include a message about static
host entries and why they are non-modifiable
* Thu Jun 07 2001 Jason Miller <[email protected]>
- [1.3.0-49]
- Update to create-default-hosts to create a new host for SystemName
with property static=yes
- Update to hostentries panel to not allow modifications for hosts
that have the property static=yes
* Fri Jun 01 2001 Jason Miller <[email protected]>
- [1.3.0-48]
- Updates to several of the panels to reflect better documentation habits
* Thu May 31 2001 Gordon Rowell <[email protected]>
- [1.3.0-47]
- Re-did showInitial() text to be more in line with the text in -46 changes
* Thu May 31 2001 Jason Miller <[email protected]>
- [1.3.0-46]
- Similar updates for createSelf(), createLocal(), createRemote(), modifyHost()
as were done in 1.3.0-45.
* Thu May 31 2001 Jason Miller <[email protected]>
- [1.3.0-45]
- Updates to the showInitial() subroutine in the hostentries panel to have
better formatted warnings
* Wed May 30 2001 Jason Miller <[email protected]>
- [1.3.0-44]
- Updates to createSelfHost, createLocalHost, createRemoteHost, modifyHost
subroutines inside the hostentries panel to show marketing information
* Wed May 30 2001 Jason Miller <[email protected]>
- [1.3.0-43]
- Updates to the showInitial panel to display marketing information
* Wed May 16 2001 Jason Miller <[email protected]>
- [1.3.0-42]
- Fixed subroutine genDomainMenu() in hostentries panel
* Thu May 10 2001 Jason Miller <[email protected]>
- [1.3.0-41]
- Changed order of actions
* Wed May 09 2001 Jason Miller <[email protected]>
- [1.3.0-40]
- Error handling fixes to 'hostentries' panel, and 'conf-migrate-hosts'
* Wed May 09 2001 Jason Miller <[email protected]>
- [1.3.0-39]
- Forgot to change conf-service-name to look for correct event
* Wed May 09 2001 Jason Miller <[email protected]>
- [1.3.0-38]
- Moved the conf-service-name action
* Wed May 09 2001 Jason Miller <[email protected]>
- [1.3.0-37]
- Changes various templates and web panels to check for publishDomain
- hostentries web panel
- conf-migrate-hosts action
- conf-service-name action
* Tue May 01 2001 Jason Miller <[email protected]>
- [1.3.0-36]
- Added an optional parameter to create-default-hosts to allow one to make
all the default hosts Globally published [i.e. service domain name]
* Wed Apr 25 2001 Jason Miller <[email protected]>
- [1.3.0-35]
- Reorganization of createlinks
- Added action delete-hosts which is symlinked into domain-delete
to automatically delete the host values for a particular domain
* Wed Apr 25 2001 Jason Miller <[email protected]>
- [1.3.0-34]
- Re-added symlink for console-save -> conf-hostsdb as it would
be required in the event that a domain is changed in the console
configuration
* Wed Apr 25 2001 Jason Miller <[email protected]>
- [1.3.0-33]
- Typo fix in genDomainMenu()
* Wed Apr 25 2001 Jason Miller <[email protected]>
- [1.3.0-32]
- Changed showInitial() subroutine in hostentries panel to use the
LocalDomainPrefix if one is set instead of DomainName
- Changed the ordering of genDomainMenu() subroutine in hostentries so that
the list of domains in the system appears as:
- Primary domain (with LocalDomainPrefix if applicable)
- Service domain
- Sorted i-bays
* Tue Apr 24 2001 Jason Miller <[email protected]>
- [1.3.0-31]
- Added actions for service domain
* Tue Apr 24 2001 Jason Miller <[email protected]>
- [1.3.0-30]
- Removed conf-hostsdb from console-save and host-delete events as it is not
necessary
- Added new action create-default-hosts (linked to domain-create event) which
takes the passed $domainName value and generates default hosts for that domain
- Changed conf-hostsdb to call create-default-hosts action passing it the
primary domain
* Tue Apr 24 2001 Jason Miller <[email protected]>
- [1.3.0-29]
- Cleaned up the Cgi code that displays the table of hosts (hostentries panel)
so that it would properly display in lynx
* Mon Apr 16 2001 Jason Miller <[email protected]>
- [1.3.0-28]
- Fixed up /etc/dhcpd.conf/60StaticEntries so that it also checks that
MACAddress and LocalIP are defined AND not equal to ''
* Thu Apr 12 2001 Jason Miller <[email protected]>
- [1.3.0-27]
- More panel text corrections
- Removed the autogeneration of hostname e-smith-manager.$DomainName as it
won't work as expected anyways (needs an apache configuration to pass it
on to the port 980)
* Thu Apr 12 2001 Jason Miller <[email protected]>
- [1.3.0-26]
- More panel updates for textual content as well as some more cleanup of
deprecated modules
* Thu Apr 12 2001 Jason Miller <[email protected]>
- [1.3.0-25]
- Panel updates for textual content for deleteHostEntry() and modifyHostEntry()
* Wed Apr 11 2001 Jason Miller <[email protected]>
- [1.3.0-24]
- Panel updates for textual content for showInitial(), createSelfHost(),
createLocalHost(), createRemoteHost()
- Cleanup of several deprecated modules
* Wed Apr 11 2001 Jason Miller <[email protected]>
- [1.3.0-23]
- changes to the layout of the manager text for the various panels
of createSelfHost(), createLocalHost(), createRemoteHost() and modifyHost()
- changes to the display of some of the panels
* Thu Apr 05 2001 Jason Miller <[email protected]>
- [1.3.0-22]
- Removed link to removed panel
* Thu Apr 05 2001 Jason Miller <[email protected]>
- [1.3.0-21]
- Made a generic modifyHostEntry() function that is meant for all three host
types and includes a drop-down to choose that type.
- Added 'FIXME' comments to locations that need to be removed
* Thu Apr 05 2001 Jason Miller <[email protected]>
- [1.3.0-20]
- Removed conf-hostsdb and conf-migrate-hosts out of post-install/post-upgrade
as this is a duplicated action set (bootstrap-console-save) which shouldn't
need to occur
* Thu Apr 05 2001 Jason Miller <[email protected]>
- [1.3.0-19]
- Changed conf-hostsdb and conf-migrate-hosts to not generate serviceDomain
entries if configuration value for ServiceDomain = '' (default on install)
* Thu Apr 05 2001 Jason Miller <[email protected]>
- [1.3.0-18]
- Added in the host-create and host-modify events to each of the performCreate()
and performModify() sections so that named is updated with the new information
* Thu Apr 05 2001 Jason Miller <[email protected]>
- [1.3.0-17]
- Merged the working prototype webpanel into the normal hostentries panel
(still keeping the old create/modify/delete scripts for reference)
- Made stipulation to show hostname/addresses for the serviceDomainName
if defined and not equal to '' (default on an installation)
* Thu Apr 05 2001 Jason Miller <[email protected]>
- [1.3.0-16]
- Changed conf-migrate-hosts to be operation 06 in post-install/post-upgrade
as it caused a failed dependency for 05init-accounts which MUST come first
* Wed Apr 04 2001 Jason Miller <[email protected]>
- [1.3.0-15]
- Added $ServiceDomainName to the list of domains for both
conf-hostsdb and conf-migrate-hosts scripts
* Wed Apr 04 2001 Jason Miller <[email protected]>
- [1.3.0-14]
- added a new conf-migrate-hosts script to be included in
post-install/post-upgrade (05) to migrate existing hosts to the new format
as well as to check for special hosts being defined for all domains
[note: this doesn't include service domain just yet]
- changed the meaning of conf-hostsdb for the default domains that it generates
- changed the panel to start using /home/e-smith/hosts instead of
/home/e-smith/service_hosts (test centre)
* Mon Apr 02 2001 Jason Miller <[email protected]>
- [1.3.0-13]
- added the functionality for modifiying all three host types
* Mon Apr 02 2001 Jason Miller <[email protected]>
- [1.3.0-12]
- created user interface for modifySelfHostEntry(), modifyLocalHostEntry(),
and modifyRemoteHostEntry()
* Mon Apr 02 2001 Jason Miller <[email protected]>
- [1.3.0-11]
- prepared modify{$HostType}HostEntry and performModify{$HostType}Modify
for actual content
* Tue Mar 27 2001 Jason Miller <[email protected]>
- [1.3.0-10]
- Implemented the performCreateRemoteHostEntry() functionality
* Tue Mar 27 2001 Jason Miller <[email protected]>
- [1.3.0-09]
- Updated performCreateSelfHostEntry() to do a check for a valid domain
name first, and rearranged order of variable declarations
- Completed the logic for performCreateLocalHostEntry()
* Tue Mar 27 2001 Jason Miller <[email protected]>
- [1.3.0-08]
- implemented deleteHostEntry() to work with the new schema
* Fri Mar 23 2001 Jason Miller <[email protected]>
- [1.3.0-07]
- Created the interfaces for create self/local/remote
- Implemented performCreateSelfHostEntry() and prepared
the logic for performCreateLocalHostEntry() and
performCreateRemoteHostEntry() to occur
- Changed REGEX for HostName to not allow periods at all
- Added genDomain() subroutine to generate a list of domains
to create host for.
* Fri Mar 23 2001 Jason Miller <[email protected]>
- [1.3.0-06]
- Further prepared the links for create/modify/remove to include the
relevant host information and the appropriate subroutines to handle
them [minus the handling portions]
* Thu Mar 22 2001 Jason Miller <[email protected]>
- [1.3.0-05]
- Prepared the links for create/modify/remove host entries
* Thu Mar 22 2001 Jason Miller <[email protected]>
- [1.3.0-04]
- Added ability to store each service_host db value into a two-tiered hash
which is then used to provide the host name values into the table structure
previously layed out in the panel.
- Added code to show a 'No hosts for this domain' message if no hosts exist
* Thu Mar 22 2001 Jason Miller <[email protected]>
- [1.3.0-03]
- Updated the new panel (service_hosts) to read from /home/e-smith/service_hosts
and changed to reflect the new layout of host entries per domain on the system
by providing menus only
* Wed Mar 21 2001 Jason Miller <[email protected]>
- [1.3.0-02]
- Created a new panel
* Wed Mar 21 2001 Jason Miller <[email protected]>
- [1.3.0-01]
- Rolled to version 1.3.0-01. Includes all patches up to 1.2.0-04
* Thu Feb 8 2001 Adrian Chung <[email protected]>
- Rolling release number for GPG signing.
* Thu Jan 25 2001 Tony Clayton <[email protected]>
- [1.2.0-03]
- changed conf-hostdb action order from 01 to 07 for all events
* Thu Jan 25 2001 Charlie Brady <[email protected]>
- [1.2.0-02]
- Add code to set default string for LocalDomainPrefix.
* Thu Jan 25 2001 Peter Samuel <[email protected]>
- [1.2.0-01]
- Rolled version number to 1.2.0-01. Includes patches upto 1.1.0-15.
* Tue Jan 23 2001 Gordon Rowell <[email protected]>
- [1.1.0-15]
- Trim trailing periods from hostnames
* Mon Jan 15 2001 Jason Miller <[email protected]>
- [1.1.0-14]
- Changed descriptive text for hosts and addresses panel to emphasize
don't do anything unless you know what you're doing
* Mon Jan 15 2001 Jason Miller <[email protected]>
- [1.1.0-13]
- Changed descriptive text for hosts and addresses panel
* Mon Jan 15 2001 Jason Miller <[email protected]>
- [1.1.0-12]
- Changes to the navigation of the e-smith manager
* Wed Jan 10 2001 Paul Nesbit <[email protected]>
- [1.1.0-11]
- If $MACAddress isn't defined, set it to " " for display. This fixes
"Use of uninitialised..." warnings in admin_error_log.
* Tue Jan 09 2001 Charlie Brady <[email protected]>
- [1.1.0-10]
- Create new bootstrap-console-save event
* Tue Jan 02 2001 Gordon Rowell <[email protected]>
- [1.1.0-9]
- Redid panel
* Thu Dec 21 2000 Charlie Brady <[email protected]>
- [1.1.0-8]
- Removed unnecessary reconfig and restart of DHCPD from remoteaccess_update
event.
* Thu Dec 21 2000 Peter Samuel <[email protected]>
- [1.1.0-7]
- Fixed case where a null host was added during post-install
* Tue Dec 19 2000 Jason Miller <[email protected]>
- [1.1.0-6]
- updated createlinks to include conf-hostsdb in the post-install and
post-upgrade events
* Sun Dec 17 2000 Gordon Rowell <[email protected]>
- [1.1.0-5]
- Removed console-save from %post - not required, and bad during installs
* Fri Dec 15 2000 Charlie Brady <[email protected]>
- [1.1.0-4]
- Actions may well be named dhcpd, but they shouldn't be here - they're
duplicated in e-smith-base :-)
* Wed Dec 13 2000 Gordon Rowell <[email protected]>
- [1.1.0-3]
- Actions are named dhcpd, not dhcp
* Wed Dec 13 2000 Gordon Rowell <[email protected]>
- [1.1.0-2]
- Link actions into remoteaccess-update
* Tue Nov 28 2000 Adrian Chung <[email protected]>
- Branched to 1.1.0 for 4.1/7.0 release.
- Modified conf-dhcpd to look in /var/lib instead of /var/state
* Fri Nov 03 2000 Gordon Rowell <[email protected]>
- Clean up of web interface code
* Wed Nov 01 2000 Gordon Rowell <[email protected]>
- Put minor version numbers into patch file