-
Notifications
You must be signed in to change notification settings - Fork 48
/
changelog
5003 lines (3013 loc) · 142 KB
/
changelog
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
vyatta-cfg (0.102.0+vyos2+current5) unstable; urgency=medium
* Provide internal stream_copy fall-through for Boost's copy_file
-- Boris Lukashev <[email protected]> Sat, 13 Aug 2022 19:00:00 -0500
vyatta-cfg (0.102.0+vyos2+current4) unstable; urgency=medium
* Adjust for replacement of Quagga with FRR.
-- Daniil Baturin <[email protected]> Sun, 26 Aug 2018 17:00:12 +0200
vyatta-cfg (0.102.0+vyos2+current3) unstable; urgency=low
* Move the python-vyos-mgmt library out of this package
-- Daniil Baturin <[email protected]> Fri, 18 Aug 2017 08:36:24 +0700
vyatta-cfg (0.102.0+vyos2+current2) unstable; urgency=low
[ Jason Hendry ]
* Adding python-vyos-mgmt library to the vyatta-cfg package
-- Jason Hendry <[email protected]> Mon, 9 Jan 2017 10:18:00 +0000
vyatta-cfg (0.102.0+vyos2+current1) unstable; urgency=medium
[ Thomas Jepp ]
* Fix missing build depends and runtime depends. Add a runtime dependency on vyatta-quagga to ensure packages are configured in the right order.
* Build fixes for updated libraries on Jessie.
* More fixes to cstore-unionfs & cli_shell_api.
* Update Makefile.am and configure.ac to properly add GObject linking.
* Replace dpkg version comparisions with strcmp.
* Remove the dependency on apt.
* Go back to using the apt version comparison for node sorting.
* Fix the reversed sort order for nodes.
[ Kim Hagen ]
-- Kim Hagen <[email protected]> Sun, 24 Jan 2016 14:57:54 -0500
vyatta-cfg (0.102.0+vyos2+lithium18) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg: allow package to depend on development builds
-- Alex Harpin <[email protected]> Sat, 14 Nov 2015 19:46:39 +0000
vyatta-cfg (0.102.0+vyos2+lithium17) unstable; urgency=low
[ Elon ]
* Bug 584 - Allow sftp as copy and commit-archive location destination
* Prevent grouping from capturing
[ Alex Harpin ]
-- Alex Harpin <[email protected]> Mon, 26 Oct 2015 22:39:36 +0000
vyatta-cfg (0.102.0+vyos2+lithium16) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg: add port checking routine to misc.pm
-- Alex Harpin <[email protected]> Sat, 17 Oct 2015 17:11:54 +0100
vyatta-cfg (0.102.0+vyos2+lithium15) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg: double quoted config values ending in \ are not reboot safe
-- Alex Harpin <[email protected]> Sat, 10 Oct 2015 15:05:08 +0100
vyatta-cfg (0.102.0+vyos2+lithium14) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg: formatting changes for style consistency
-- Alex Harpin <[email protected]> Sat, 11 Jul 2015 15:36:02 +0100
vyatta-cfg (0.102.0+vyos2+lithium13) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg: updated fix for formatting top level cli merge command
-- Alex Harpin <[email protected]> Thu, 09 Jul 2015 21:07:07 +0100
vyatta-cfg (0.102.0+vyos2+lithium12) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg: fix formatting issue with top level cli merge command
* vyatta-cfg: remove unused unionfs mounts following unclean config exits
-- Alex Harpin <[email protected]> Tue, 07 Jul 2015 07:27:27 +0100
vyatta-cfg (0.102.0+vyos2+lithium11) unstable; urgency=low
* vyatta-cfg: correct UnionfsCstore::do_umount error message
-- Alex Harpin <[email protected]> Sun, 28 Jun 2015 13:47:48 +0100
vyatta-cfg (0.102.0+vyos2+lithium10) unstable; urgency=low
* vyatta-cfg: update dh_gencontrol with new development build flag
-- Alex Harpin <[email protected]> Mon, 15 Jun 2015 07:44:03 +0100
vyatta-cfg (0.102.0+vyos2+lithium9) unstable; urgency=low
* Remove some obsolete workaround.
-- Daniil Baturin <[email protected]> Thu, 09 Apr 2015 05:23:21 +0200
vyatta-cfg (0.102.0+vyos2+lithium8) unstable; urgency=low
* Bug #538: run user commit hooks as vyattacfg group member.
* Clean up the debian/control.
-- Daniil Baturin <[email protected]> Thu, 09 Apr 2015 03:09:32 +0200
vyatta-cfg (0.102.0+vyos2+lithium7) unstable; urgency=low
* Force release
-- Daniil Baturin <[email protected]> Fri, 03 Apr 2015 20:15:13 +0200
vyatta-cfg (0.102.0+vyos2+lithium6) unstable; urgency=low
* Bug #538: add scripts for running user commit hooks.
-- Daniil Baturin <[email protected]> Fri, 03 Apr 2015 20:14:38 +0200
vyatta-cfg (0.102.0+vyos2+lithium5) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg: update get_ipaddr_int_hash for vtun and wan interfaces
* vyatta-cfg: update is_primary_address for vtun and wan interfaces
-- Alex Harpin <[email protected]> Sun, 15 Feb 2015 13:25:19 +0000
vyatta-cfg (0.102.0+vyos2+lithium4) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg: set the path for a vrrp interface correctly
-- Alex Harpin <[email protected]> Sun, 08 Feb 2015 12:12:49 +0000
vyatta-cfg (0.102.0+vyos2+lithium3) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg: fix for "failed to generate commited config"
-- Alex Harpin <[email protected]> Sun, 11 Jan 2015 19:49:16 +0000
vyatta-cfg (0.102.0+vyos2+lithium2) unstable; urgency=low
* Force release
-- Alex Harpin <[email protected]> Mon, 15 Dec 2014 21:02:55 +0000
vyatta-cfg (0.102.0+vyos2+lithium1) unstable; urgency=low
* New branch
-- Alex Harpin <[email protected]> Sun, 30 Nov 2014 22:11:09 +0000
vyatta-cfg (0.102.0+vyos1+helium9) unstable; urgency=low
* Force release
-- Daniil Baturin <[email protected]> Wed, 08 Oct 2014 21:16:08 +0200
vyatta-cfg (0.102.0+vyos1+helium8) unstable; urgency=low
* Add QinQ support to the intf name to path function.
-- Daniil Baturin <[email protected]> Wed, 08 Oct 2014 21:12:10 +0200
vyatta-cfg (0.102.0+vyos1+helium7) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg: formatting changes for style consistency
* vyatta-cfg: display openvpn interface descriptions after they reset
* vyatta-cfg: formatting changes for style consistency
* vyatta-cfg: return correct path for pppoe or pppoa interfaces
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Wed, 08 Oct 2014 16:29:39 +0200
vyatta-cfg (0.102.0+vyos1+helium6) unstable; urgency=low
* Replace some old Vyatta names.
-- Daniil Baturin <[email protected]> Mon, 18 Aug 2014 01:06:34 +0200
vyatta-cfg (0.102.0+vyos1+helium5) unstable; urgency=low
* Update maintainer address.
-- Daniil Baturin <[email protected]> Sun, 27 Jul 2014 10:42:14 +0200
vyatta-cfg (0.102.0+vyos1+helium4) unstable; urgency=low
[ Hiroyuki Sato ]
* Bug #180 save config using scp fails.
[ Kim Hagen ]
* Removed part of dirty workaround, chmod of of /dev/fuse and
/usr/bin/fusermount
* Removed dirty workaround for fuse completely.
[ Daniil Baturin ]
* Bug #251: add dirty hack for taking config from stdin
-- Daniil Baturin <[email protected]> Wed, 02 Jul 2014 05:22:56 +0200
vyatta-cfg (0.102.0+vyos1+helium3) unstable; urgency=low
[ higebu ]
* Add support for l2tpv3
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Sun, 06 Apr 2014 13:45:53 +0200
vyatta-cfg (0.102.0+vyos1+helium2) unstable; urgency=low
* Import and adapt Kim Hagen's changes for union-fs support.
* Some dirty workarounds to get unionfs-fuse to work.
* fusermount in squeeze is not executable for non-members of fuse, fix
it at boot.
* Add umount functions for unionfs-fuse.
-- Daniil Baturin <[email protected]> Mon, 10 Mar 2014 04:26:39 +0100
vyatta-cfg (0.102.0+vyos1+helium1) unstable; urgency=low
* Add missing build dependencies.
-- Daniil Baturin <[email protected]> Sat, 15 Feb 2014 15:55:05 +0100
vyatta-cfg (0.102.0+hydrogen3) unstable; urgency=low
* Bug #25: Add template for running conf and op mode commands
-- Daniil Baturin <[email protected]> Sat, 16 Nov 2013 14:59:58 +0100
vyatta-cfg (0.102.0+hydrogen2) unstable; urgency=low
* Remove support for /config on punched card^W^W floppy drive
* Remove some XORP-related checks.
* Some more missed Vyatta occurences.
* Rename novyatta-$foo kernel command line option to no-vyos-$foo
* Add kernel commandline option to boot with specific config.
-- Daniil Baturin <[email protected]> Sun, 03 Nov 2013 18:27:50 +0100
vyatta-cfg (0.102.0+hydrogen1) unstable; urgency=low
* Fix branch name
-- Daniil Baturin <[email protected]> Fri, 01 Nov 2013 21:44:26 +0100
vyatta-cfg (0.101.7+daisy7) unstable; urgency=low
* Force release
-- Daniil Baturin <[email protected]> Fri, 01 Nov 2013 21:43:26 +0100
vyatta-cfg (0.101.7+daisy6) unstable; urgency=low
* Replace s/Vyatta/VyOS/ in init script
-- Daniil Baturin <[email protected]> Fri, 01 Nov 2013 21:42:32 +0100
vyatta-cfg (0.101.7+daisy5) unstable; urgency=low
* update init file to require vyatta-unicast
-- Robert Bays <[email protected]> Mon, 03 Jun 2013 17:54:06 -0700
vyatta-cfg (0.101.7+daisy4) unstable; urgency=low
* allow optional dependency on vyatta-unicast
-- Robert Bays <[email protected]> Sat, 01 Jun 2013 16:40:16 -0700
vyatta-cfg (0.101.7+daisy3) unstable; urgency=low
* Add isMultiNode perl CLI API
-- James Davidson <[email protected]> Thu, 16 May 2013 13:11:14 -0700
vyatta-cfg (0.101.7+daisy2) unstable; urgency=low
* Fix compiler warnings
-- James Davidson <[email protected]> Mon, 07 Jan 2013 09:35:44 -0800
vyatta-cfg (0.101.7+daisy1) unstable; urgency=low
* create daisy branch
-- John Southworth <[email protected]> Sat, 13 Oct 2012 13:30:31 -0700
vyatta-cfg (0.101.7) unstable; urgency=low
* new branch
-- John Southworth <[email protected]> Fri, 12 Oct 2012 19:46:46 -0700
vyatta-cfg (0.101.6) unstable; urgency=low
* Fix get_terminal_size redefinition warning
-- James Davidson <[email protected]> Mon, 24 Sep 2012 13:09:01 -0700
vyatta-cfg (0.101.5) unstable; urgency=low
* Fix a few completion bugs
-- John Southworth <[email protected]> Wed, 12 Sep 2012 13:22:18 -0700
vyatta-cfg (0.101.4) unstable; urgency=low
* Revert "If vclient exists, run it"
-- James Davidson <[email protected]> Tue, 04 Sep 2012 17:33:27 -0700
vyatta-cfg (0.101.3) unstable; urgency=low
* Add cstore_cfg_path_exists_effective C interface
-- James Davidson <[email protected]> Tue, 04 Sep 2012 12:37:20 -0700
vyatta-cfg (0.101.2) unstable; urgency=low
* If vclient exists, run it
-- James Davidson <[email protected]> Wed, 22 Aug 2012 16:05:09 -0700
vyatta-cfg (0.101.1) unstable; urgency=low
* Bugfix 8183: Make sure files in /config are owned by the vyattacfg
group
-- John Southworth <[email protected]> Wed, 22 Aug 2012 13:02:43 -0700
vyatta-cfg (0.101.0) unstable; urgency=low
* Rewrite interface prefix matching
-- Stephen Hemminger <[email protected]> Tue, 14 Aug 2012 10:48:11 -0700
vyatta-cfg (0.100.5) unstable; urgency=low
* Add support for vswitch
-- Stephen Hemminger <[email protected]> Wed, 01 Aug 2012 13:30:59 -0700
vyatta-cfg (0.100.4) unstable; urgency=low
* Restore original lock file semantics
* Optimize commit logging
* Fix syslog level for commit messages
-- Stephen Hemminger <[email protected]> Fri, 13 Jul 2012 15:22:59 -0700
vyatta-cfg (0.100.3) unstable; urgency=low
* Log node of commit failure
* Don't leak file descriptors to action
* Minor code cleanup
-- Stephen Hemminger <[email protected]> Wed, 11 Jul 2012 12:23:27 -0700
vyatta-cfg (0.100.2) unstable; urgency=low
* Make dataplane matching less restrictive
-- Stephen Hemminger <[email protected]> Tue, 26 Jun 2012 14:03:29 -0700
vyatta-cfg (0.100.1) unstable; urgency=low
* Make indentation consistent
* More indentation cleanup
* Add new function to find hash of configured addresses
-- Stephen Hemminger <[email protected]> Fri, 22 Jun 2012 15:50:12 -0700
vyatta-cfg (0.99.88) unstable; urgency=low
* ioctl interface improvements
* Remove trailing whitespace
* Allow dataplane interface name dp0em0
* Simplify name matching regex
-- Stephen Hemminger <[email protected]> Thu, 21 Jun 2012 18:05:25 -0700
vyatta-cfg (0.99.87) unstable; urgency=low
* Fix memory problem on bad config file
-- John Southworth <[email protected]> Fri, 08 Jun 2012 14:38:38 -0700
vyatta-cfg (0.99.86) unstable; urgency=low
* Fix more load/commit memory leaks
-- John Southworth <[email protected]> Sun, 03 Jun 2012 10:33:53 -0700
vyatta-cfg (0.99.85) unstable; urgency=low
* Partial bugfix 8111
-- John Southworth <[email protected]> Fri, 25 May 2012 12:36:51 -0700
vyatta-cfg (0.99.84) unstable; urgency=low
* Support for VTI.
-- Saurabh Mohan <[email protected]> Wed, 16 May 2012 16:38:05 -0700
vyatta-cfg (0.99.83) unstable; urgency=low
* Move VRRP to its own package
* Remove vrrp files from Makefile
-- John Southworth <[email protected]> Tue, 15 May 2012 20:46:31 -0700
vyatta-cfg (0.99.82) unstable; urgency=low
* Bugfix 8079: fix require sys/ioctl.ph confilcts
* Fix variable use in last commit
-- John Southworth <[email protected]> Thu, 10 May 2012 18:21:43 -0700
vyatta-cfg (0.99.81) unstable; urgency=low
* Add functions to get calling terminal size to Vyatta::Misc
-- John Southworth <[email protected]> Wed, 09 May 2012 08:50:29 -0700
vyatta-cfg (0.99.80) unstable; urgency=low
* Enable snmp support for vrrp
-- John Southworth <[email protected]> Mon, 07 May 2012 18:06:06 -0700
vyatta-cfg (0.99.79) unstable; urgency=low
* Match from beginning of the line for multilink device
-- John Southworth <[email protected]> Mon, 30 Apr 2012 17:05:46 -0700
vyatta-cfg (0.99.78) unstable; urgency=low
* Bugfix 8017:
-- John Southworth <[email protected]> Mon, 30 Apr 2012 16:41:23 -0700
vyatta-cfg (0.99.77) unstable; urgency=low
* Bugfix: 8057 fix call to commit in commit-confirm function
-- John Southworth <[email protected]> Thu, 26 Apr 2012 14:10:41 -0700
vyatta-cfg (0.99.76) unstable; urgency=low
* Fix perlcritic warnings in strip migration comments
* Use ioctl() to read interface flags
-- Stephen Hemminger <[email protected]> Tue, 10 Apr 2012 18:29:54 -0700
vyatta-cfg (0.99.75) unstable; urgency=low
* Bugfix 7267: make inodes allocate dynamically
* adjust pppoe interface detection for non-userland
-- John Southworth <[email protected]> Thu, 22 Mar 2012 14:05:26 -0700
vyatta-cfg (0.99.74) unstable; urgency=low
* new branch
-- Deepti Kulkarni <[email protected]> Sat, 03 Mar 2012 02:25:28 -0800
vyatta-cfg (0.99.73) unstable; urgency=low
* Fix curl command in save
-- John Southworth <[email protected]> Thu, 01 Mar 2012 17:03:23 +0000
vyatta-cfg (0.99.72) unstable; urgency=low
* Bugfix 7555: Allow users to import ssh keys when running 'save'
-- John Southworth <[email protected]> Thu, 01 Mar 2012 01:40:37 +0000
vyatta-cfg (0.99.71) unstable; urgency=low
* Bugfix 7555: Allow users to import keys when using the 'load'
command from config mode
-- John Southworth <[email protected]> Thu, 01 Mar 2012 00:02:16 +0000
vyatta-cfg (0.99.70) unstable; urgency=low
* bug fix for 4718 - enhancement that will log commits in syslog for
all
-- Deepti Kulkarni <[email protected]> Tue, 28 Feb 2012 08:23:40 -0800
vyatta-cfg (0.99.69) unstable; urgency=low
* Revert "Bug fix for 4718 - Log successful commits in messages file."
-- Deepti Kulkarni <[email protected]> Tue, 28 Feb 2012 05:56:19 -0800
vyatta-cfg (0.99.68) unstable; urgency=low
* Bug fix for 4718 - Log successful commits in messages file.
-- Deepti Kulkarni <[email protected]> Wed, 22 Feb 2012 08:39:45 -0800
vyatta-cfg (0.99.67) unstable; urgency=low
* Add ability to differentiate between node types in help text
* Fix some bugs in config path helpers
* Fix an inconsistency with single non-completion cases
-- John Southworth <[email protected]> Fri, 03 Feb 2012 09:12:51 -0800
vyatta-cfg (0.99.66) unstable; urgency=low
* manually force rebuild
-- Stephen Hemminger <[email protected]> Wed, 01 Feb 2012 11:51:33 -0800
vyatta-cfg (0.99.65) unstable; urgency=low
* Add support for dataplane config
-- Stephen Hemminger <[email protected]> Fri, 16 Dec 2011 13:21:56 -0800
vyatta-cfg (0.99.64) unstable; urgency=low
* Adjust default displayed priority to reflect actual default priority
-- John Southworth <[email protected]> Mon, 12 Dec 2011 16:49:30 -0800
vyatta-cfg (0.99.63) unstable; urgency=low
* Fix default completions for configuration mode
-- John Southworth <[email protected]> Fri, 09 Dec 2011 12:21:28 -0800
vyatta-cfg (0.99.62) unstable; urgency=low
* Fix source address display problem in address owner case for vrrp
-- John Southworth <[email protected]> Tue, 06 Dec 2011 11:49:49 -0800
vyatta-cfg (0.99.61) unstable; urgency=low
* Fix typo in vrid split in Interfaces module
-- John Southworth <[email protected]> Mon, 05 Dec 2011 17:38:05 -0800
vyatta-cfg (0.99.60) unstable; urgency=low
* Fix bug in vrrp interface handling
-- John Southworth <[email protected]> Mon, 05 Dec 2011 12:02:22 -0800
vyatta-cfg (0.99.59) unstable; urgency=low
* raid: leave modules intact
-- Stephen Hemminger <[email protected]> Fri, 02 Dec 2011 13:44:15 -0800
vyatta-cfg (0.99.58) unstable; urgency=low
* Add vrrp interface support to Interface library
-- John Southworth <[email protected]> Fri, 02 Dec 2011 11:21:29 -0800
vyatta-cfg (0.99.57) unstable; urgency=low
* init: unload unneeded raid modules
-- Stephen Hemminger <[email protected]> Tue, 29 Nov 2011 13:56:44 -0800
vyatta-cfg (0.99.56) unstable; urgency=low
* Return vmac interface configuration state in vrrp_get_config()
-- Bob Gilligan <[email protected]> Mon, 28 Nov 2011 18:04:31 -0800
vyatta-cfg (0.99.55) unstable; urgency=low
* Bug 7411: exporting isValidPortNumber API from Misc.pm, used in
conntrack for validating ports entered
-- Gaurav Sinha <[email protected]> Mon, 14 Nov 2011 16:26:26 -0800
vyatta-cfg (0.99.54) unstable; urgency=low
[ Stig Thormodsrud ]
* vrrp restart not working. fix pid filename for 1.2.2
[ Bob Gilligan ]
-- Bob Gilligan <[email protected]> Tue, 01 Nov 2011 17:55:50 -0700
vyatta-cfg (0.99.53) unstable; urgency=low
* Add VarRef translation to the allowed field for config mode
* Fix 'show -all'
-- John Southworth <[email protected]> Wed, 26 Oct 2011 11:37:11 -0500
vyatta-cfg (0.99.52) unstable; urgency=low
* Fix a few config completion mistakes: help text was no longer being
paged (this differed from op mode). Fix the Invalid top level
command help text
-- John Southworth <[email protected]> Sat, 22 Oct 2011 11:45:28 -0700
vyatta-cfg (0.99.51) unstable; urgency=low
* Don't show an error message when we can't turn echo on
-- John Southworth <[email protected]> Fri, 21 Oct 2011 12:42:19 -0500
vyatta-cfg (0.99.50) unstable; urgency=low
* Workaround for bug 7570, turning echo on manually when running a
templated command should fix the majority of the problems. It would
be better to fix the readline/less interaction in the future
-- John Southworth <[email protected]> Thu, 20 Oct 2011 16:49:59 -0500
vyatta-cfg (0.99.49) unstable; urgency=low
* Fix broken completion for copy and rename second parameter
-- John Southworth <[email protected]> Tue, 18 Oct 2011 18:52:13 -0500
vyatta-cfg (0.99.48) unstable; urgency=low
* Make directory completions, if it is the first word of a run
completion, work so that users can easily find scripts they may be
trying to run.
-- John Southworth <[email protected]> Mon, 17 Oct 2011 14:15:04 -0500
vyatta-cfg (0.99.47) unstable; urgency=low
* Provide accessor for the net_prefix hash
-- John Southworth <[email protected]> Wed, 12 Oct 2011 18:49:44 -0500
vyatta-cfg (0.99.46) unstable; urgency=low
* Fix completions for fields that have more than one word
-- John Southworth <[email protected]> Tue, 11 Oct 2011 11:34:57 -0500
vyatta-cfg (0.99.45) unstable; urgency=low
* Handle operational commands that cannot be run non-interactively
from config mode
-- John Southworth <[email protected]> Mon, 10 Oct 2011 11:33:25 -0500
vyatta-cfg (0.99.44) unstable; urgency=low
* quote individual elements for the validation string
-- John Southworth <[email protected]> Thu, 06 Oct 2011 18:01:49 -0500
vyatta-cfg (0.99.43) unstable; urgency=low
* Fix typo in error message
-- John Southworth <[email protected]> Thu, 06 Oct 2011 16:33:11 -0500
vyatta-cfg (0.99.42) unstable; urgency=low
* Bugfix 6747: use bash conditional expressions instead of posix test
expressions when doing comparisons. The conditional expressions
don't do as much expansion as the test expression does, and are the
modern variant
-- John Southworth <[email protected]> Thu, 06 Oct 2011 16:21:15 -0500
vyatta-cfg (0.99.41) unstable; urgency=low
* Fix up completions for commit and compare
-- John Southworth <[email protected]> Thu, 06 Oct 2011 12:29:00 -0500
vyatta-cfg (0.99.40) unstable; urgency=low
* Add comments to document the changes in completion script
-- John Southworth <[email protected]> Wed, 05 Oct 2011 19:21:01 -0500
vyatta-cfg (0.99.39) unstable; urgency=low
* Pass through the completion parameters to functions that need them
-- John Southworth <[email protected]> Wed, 05 Oct 2011 18:09:00 -0500
vyatta-cfg (0.99.38) unstable; urgency=low
* Make non-lastword completions more fluid by using the current prefix
and word provided by bash
* fix stuck completion on non-lastword
-- John Southworth <[email protected]> Wed, 05 Oct 2011 17:53:50 -0500
vyatta-cfg (0.99.37) unstable; urgency=low
* warn user of invalid top level command, this will tell the user when
the try to complete on a non-vyatta command, after hitting space,
normal completion will continue to work for non-vyatta commands
-- John Southworth <[email protected]> Tue, 04 Oct 2011 19:22:49 -0500
vyatta-cfg (0.99.36) unstable; urgency=low
* Fix the handling of tag nodes in config mode completions
-- John Southworth <[email protected]> Tue, 04 Oct 2011 19:04:34 -0500
vyatta-cfg (0.99.35) unstable; urgency=low
* Fix compare completion when comparing to the saved config
* Fix exit help text to make it clear that you can exit without
discrarding.
-- John Southworth <[email protected]> Tue, 04 Oct 2011 18:31:51 -0500
vyatta-cfg (0.99.34) unstable; urgency=low
* Fix some help text, add discard and confirm completion functions,
fix comment completion validation
-- John Southworth <[email protected]> Tue, 04 Oct 2011 17:59:18 -0500
vyatta-cfg (0.99.33) unstable; urgency=low
* Clear vyatta_cfg_comp_help when starting a new completion otherwise
the Detailed Information section from the previous completion will
be retained on this completion
* Fix completions for confirm, discard, exit, copy, rename, load,
save, merge, and loadkey to be consistent with the rest of the
system
-- John Southworth <[email protected]> Tue, 04 Oct 2011 17:43:32 -0500
vyatta-cfg (0.99.32) unstable; urgency=low
* Make show, set, delete, and run completions in configuration mode
work similarly to op mode, other top level commands still need work
-- John Southworth <[email protected]> Tue, 04 Oct 2011 15:42:04 -0500
vyatta-cfg (0.99.31) unstable; urgency=low
* Prevent config mode completions from getting stuck when backspacing
over them
-- John Southworth <[email protected]> Mon, 03 Oct 2011 13:17:06 -0500
vyatta-cfg (0.99.30) unstable; urgency=low
* Fix problems when using negative values
-- John Southworth <[email protected]> Fri, 02 Sep 2011 12:03:20 -0500
vyatta-cfg (0.99.29) unstable; urgency=low
* Don't eval the commands just run them; simplify the command wrapper
functions
-- John Southworth <[email protected]> Thu, 18 Aug 2011 15:49:09 -0500
vyatta-cfg (0.99.28) unstable; urgency=low
* Bugfix 7442: Check if running interactively before doing binding
options
-- John Southworth <[email protected]> Wed, 17 Aug 2011 16:06:43 -0500
vyatta-cfg (0.99.27) unstable; urgency=low
* Allow config mode completion to work when not at the end of the
string
-- John Southworth <[email protected]> Mon, 15 Aug 2011 16:55:17 -0500
vyatta-cfg (0.99.26) unstable; urgency=low
* Fix edit level in path validation function for short commands
-- John Southworth <[email protected]> Tue, 09 Aug 2011 18:30:17 -0500
vyatta-cfg (0.99.25) unstable; urgency=low
* Move allowed-op.in to vyatta-op to allow allowed-op for
unpriviledged users to be generated at compile time. Remove boot
time generation of unpriviledged allowed-op
-- John Southworth <[email protected]> Wed, 03 Aug 2011 12:01:41 -0500
vyatta-cfg (0.99.24) unstable; urgency=low
* Add support for unambiguous top level commands for unpriviledged
users; generate allowed-op short commands at boot time
-- John Southworth <[email protected]> Tue, 02 Aug 2011 19:43:32 -0500
vyatta-cfg (0.99.23) unstable; urgency=low
* Reorganize the bash completion and command interpreter scripts into
easier to manage chunks. Command interpreter is now in vyatta-cfg-
run and common functions have been moved to vyatta-op
-- John Southworth <[email protected]> Tue, 02 Aug 2011 12:46:04 -0500
vyatta-cfg (0.99.22) unstable; urgency=low
* Fix incorrect comp_words check in previous commit. My original
implementation used config.boot instead of saved
-- John Southworth <[email protected]> Mon, 01 Aug 2011 15:43:53 -0500
vyatta-cfg (0.99.21) unstable; urgency=low
* Cleanup some top level completion help text and add a 'compare
saved' command so that users can check their saved config vs the
working config without loading
-- John Southworth <[email protected]> Mon, 01 Aug 2011 15:34:31 -0500
vyatta-cfg (0.99.20) unstable; urgency=low
* Cleanup help text for compare
-- John Southworth <[email protected]> Mon, 01 Aug 2011 13:23:16 -0500
vyatta-cfg (0.99.19) unstable; urgency=low
* Fix build on older gcc
-- Stephen Hemminger <[email protected]> Fri, 29 Jul 2011 23:51:42 -0700
vyatta-cfg (0.99.18) unstable; urgency=low
[ Stephen Hemminger ]
* Fix warning about unused function prototype
* Fix build of config backend on Glibc 4.6
[ John Southworth ]
* Bugfix 2823: Configuration mode command interpreter, output
adjustments for consistency
-- John Southworth <[email protected]> Fri, 29 Jul 2011 20:43:00 -0700
vyatta-cfg (0.99.17) unstable; urgency=low
* Added to make op-mode commands under force to be accessible by
-- Deepti Kulkarni <[email protected]> Wed, 27 Jul 2011 07:57:20 -0700
vyatta-cfg (0.99.16) unstable; urgency=low
* Bugfix 7374: remove redundant calls to commit on boot
-- John Southworth <[email protected]> Tue, 26 Jul 2011 16:32:11 -0500
vyatta-cfg (0.99.15) unstable; urgency=low
* Bugfix 7362: Make some adjustments to previous patch per An-Cheng's
suggestions
-- John Southworth <[email protected]> Mon, 25 Jul 2011 13:22:47 -0500
vyatta-cfg (0.99.14) unstable; urgency=low
* Oops, should have been false by default.
-- John Southworth <[email protected]> Sat, 23 Jul 2011 21:52:24 -0700
vyatta-cfg (0.99.13) unstable; urgency=low
* Bugfix 7362: Make reset_paths reset to root level when resolving
varrefs
-- John Southworth <[email protected]> Sat, 23 Jul 2011 21:04:30 -0700
vyatta-cfg (0.99.12) unstable; urgency=low
* Bugfix 7357: change the the run command in cfg to use the op mode
wrapper to ensure the proper environment for the commands exists
-- John Southworth <[email protected]> Wed, 20 Jul 2011 19:29:09 -0500
vyatta-cfg (0.99.11) unstable; urgency=low
* filter run-parts messages is no longer required.
-- Deepti Kulkarni <[email protected]> Fri, 15 Jul 2011 06:42:23 -0700
vyatta-cfg (0.99.10) unstable; urgency=low
* Bugfix 7331: Napa timeframe fix for config migration commment bug.
Will investigate if this is a viable long term fix or if we want to
find another way to ignore migrated comments for oxnard
* Don't allow users to set migration comments
* Bugfix 7331: better fix for the bug
-- John Southworth <[email protected]> Fri, 15 Jul 2011 11:59:45 -0500
vyatta-cfg (0.99.9) unstable; urgency=low
* new branch
-- Deepti Kulkarni <[email protected]> Thu, 07 Jul 2011 20:55:26 -0700
vyatta-cfg (0.99.8) unstable; urgency=low
* Move the is_uniq_address function to Interface.pm
-- John Southworth <[email protected]> Tue, 05 Jul 2011 16:21:31 -0500
vyatta-cfg (0.99.7) unstable; urgency=low
[ Stephen Hemminger ]
* Comment out unused functions
[ John Southworth ]
* Bugfix 7224: check nodes immediate children for changes when the
node its self is unchanged. If a child has changed run the commit
check for the node
* Bugfix 7259: check that out_stream is not null before attempting to
write to it
* Add another check for out_stream now all refrences are validated
before writing to it
-- John Southworth <[email protected]> Fri, 01 Jul 2011 11:44:25 -0500
vyatta-cfg (0.99.6) unstable; urgency=low
* Bugfix 6767: Syslog any errors from rmmod instead of writing to log
file.
-- Bob Gilligan <[email protected]> Wed, 15 Jun 2011 18:01:02 -0700
vyatta-cfg (0.99.5) unstable; urgency=low
* Bugfix 6767: Move log files from /tmp to /var/log/vyatta.
-- Bob Gilligan <[email protected]> Wed, 15 Jun 2011 17:00:30 -0700
vyatta-cfg (0.99.4) unstable; urgency=low
* part of bug fix 7178 - suppress the non-required messages.
-- Deepti Kulkarni <[email protected]> Mon, 13 Jun 2011 09:22:52 -0700
vyatta-cfg (0.99.3) unstable; urgency=low
* bug fix for 7178 - commit hook for demo-entitlement notifications
not working.
-- Deepti Kulkarni <[email protected]> Mon, 13 Jun 2011 05:35:13 -0700
vyatta-cfg (0.99.2) unstable; urgency=low
* Adjust the number of characters we print when creating an offset to
the buffer to remove the errloc tag
-- John Southworth <[email protected]> Fri, 10 Jun 2011 10:53:49 -0700
vyatta-cfg (0.99.1) unstable; urgency=low
* Bugfix 7153: Initialize buffer before reading into it
-- John Southworth <[email protected]> Thu, 09 Jun 2011 19:32:10 -0500
vyatta-cfg (0.99.0) unstable; urgency=low
* remove unneeded stderr message
-- An-Cheng Huang <[email protected]> Fri, 27 May 2011 18:32:59 -0700