-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathxrss.xml
1878 lines (1878 loc) · 80.8 KB
/
xrss.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>CBSD Project Feed</title>
<description>CBSD Project Feed</description>
<language>en-us</language>
<link>https://www.bsdstore.ru</link>
<lastBuildDate>Thu, 13 Jul 2017 06:12:00 +0000 </lastBuildDate>
<pubDate>Thu, 13 Jul 2017 06:12:00 +0000 </pubDate>
<ttl>120</ttl>
<image>
<url>https://www.bsdstore.ru/img/logo.gif</url>
<title>FreeBSD Errata Notices</title>
<link>https://www.FreeBSD.org/security/</link>
</image>
<atom:link type="application/rss+xml" href="https://www.bsdstore.ru/rss.xml"/>
<item>
<title>Welcome to CBSD Project RSS feed</title>
<description>Information about the project will be published here</description>
<link>https://www.bsdstore.ru</link>
<guid>Welcome to CBSD Project RSS feed</guid>
<pubDate>Thu, 13 Jul 2017 06:12:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.3 available</title>
<description>Relnotes:<br />
- add bhyve_vnc_tcp_ipconnect variable for external hooks<br />
- add Makefile for update vm-profiles regardless of CBSD releases, from GitHub<br />
- bhyve bugfix: dont use iso_args when vm_iso_path is empty, reported by Alexsander Povolotsky (aka tarkhil) via Telegram<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.3 available</guid>
<pubDate>Web, 30 Aug 2017 12:12:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.4 available</title>
<description>Relnotes:<br />
- jexec now support execution command in multiple jail (in parallel mode)<br />
- support for jname as mask for [jb]stop/[jb]start/junregister/jregister/[jb]remove/[jb]export/[jb]import<br />
- (bugfix) allow.reserved_ports still not available in FreeBSD 11-RELENG, only -CURRENT<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.4 available</guid>
<pubDate>Thu, 07 Sep 2017 12:12:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.5 available</title>
<description>Relnotes:<br />
- bugfix release<br />
- allow exec_stop/exec_start modify via jconfig. Issue #193, reported by: sharky1337<br />
- fixes for zfs attach, reported by: Sebastian Schaack, via Telegram<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.5 available</guid>
<pubDate>Sun, 10 Sep 2017 12:12:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.6 available</title>
<description>Relnotes:<br />
- bhyve: add MTU settings for NIC<br />
- bset/jset: support for jname as mask<br />
- bug fixes for vm_ram convertation in bconfig dialog<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.6 available</guid>
<pubDate>Sun, 17 Sep 2017 12:12:00 +0000 </pubDate>
</item>
<item>
<title>Bhyve shared folders via P9 comes to CBSD</title>
<description><br />
Shared folders are used to exchange files between virtual machines or between a virtual machine and a host system. <br />
Details: http://www.bsdstore.local/en/11.1.x/wf_bhyve_p9_ssi.html <br />
</description>
<link>http://www.bsdstore.local/en/11.1.x/wf_bhyve_p9_ssi.html</link>
<guid>CBSD and bhyve VirtFS</guid>
<pubDate>Sun, 01 Oct 2017 09:40:00 +0000 </pubDate>
</item>
<item>
<title>FreeBSD Cloud and DevOPS, Part 3, by Goran Mekic</title>
<description><br />
Goran Mekic, one of the participants CBSD Project published the third part of the article: FreeBSD Cloud and DevOps 3<br />
Details: http://meka.rs/blog/2017/10/01/freebsd-cloud-and-devops-3/ <br />
</description>
<link>http://meka.rs/blog/2017/10/01/freebsd-cloud-and-devops-3/</link>
<guid>FreeBSD Cloud and DevOps part 3</guid>
<pubDate>Sun, 17 Sep 2017 13:12:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.7 available</title>
<description>Relnotes:<br />
- bhyve: add virtio-p9 for shared folders feature<br />
- jail bugfix: Fix execution for custom pre/post script. Issue #197, reported by: Christopher Haglund (aka sweco-secfha)<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.7 available</guid>
<pubDate>Tue, 03 Oct 2017 12:12:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.8 available</title>
<description>Relnotes:<br />
- bhyve: OpenBSD UEFI support (on FreeBSD 11.1-RELEASE)<br />
- bhyve: add vgaconf settings (for FreeBSD 11.1-RELEASE)<br />
- bhyve: fix for FreeBSD guest boot on serial console in legacy MBR mode<br />
- bhyve: add p9 patch<br />
- dhcpd: also check IP free address via bhyve list<br />
- colorized active/passive state of environment in [jb]ls and [jb]config<br />
- bhyve: fix mynic variable with full NIC list (reported by Elea Molokan via CBSD Telegram)<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.8 available</guid>
<pubDate>Sat, 14 Oct 2017 01:01:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.9 available</title>
<description>Relnotes:<br />
- fix broken build after r452700<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.9 available</guid>
<pubDate>Sun, 05 Nov 2017 01:01:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.10 available</title>
<description>Relnotes:<br />
- jexec, jlogin: add user= params, suggested by Goran Mekic aka meka<br />
- zfsattach: make zfs jail after jail create but before /etc/rc boot sequence, force persist flags for this cases. Issue #213, reported by sturican<br />
- bugfix: [jb]create proper removejconf args, reported Goran Mekic aka meka<br />
- bugfix: Preserve jconf perms, submitted by Goran Mekic aka meka<br />
- bugfix: jstop: fix ip4_addr list for removeing, add work-around for unstoppable cron via pkill<br />
- bugfix: bhyve: skip loopback interface as uplink, (reported by Denis Bezkrovniy via Telegram)<br />
- bugfix: bhyve: skip CBSDSYSTEM0 tap interface when no default route, (reported by Denis Bezkrovniy via Telegram)<br />
- bugfix: zfsattach: fix for syntax error. Issue #213, reported by sturican<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.10 available</guid>
<pubDate>Sun, 26 Nov 2017 01:01:00 +0000 </pubDate>
</item>
<item>
<title>CBSD at FOSDEM 2018</title>
<description>Goran Mekic one of the participants of the CBSD Project published in his tweet:<br />
I'll be talking about #FreeBSD jails, bhyve and xen manager at @fosdembsd. It's called #CBSD<br />
See you at FOSDEM'18!<br />
</description>
<link>https://twitter.com/meka_floss/status/937981809568239616</link>
<guid>CBSD at FOSDEM 2018</guid>
<pubDate>Tue, 05 Dec 2017 10:02:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.12 available</title>
<description>Relnotes:<br />
- Fetching base.txz for CURRENT also possible from ftp.freebsd.org<br />
- Identify HBSD environment with platform="HardenedBSD" global variable<br />
- show_profile_list: separate filter by show_xen/show_bhyve instead if active=<br />
- nics-list: support for phyonly= arguments<br />
- sync xen module with bhyve<br />
- fix broken build if databases/sqlite3 was built with ICU=on, thanks to Pavel Volkov via https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214551<br />
- fixes for natcfg-tui ( Issue #134 )<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.12 available</guid>
<pubDate>Fri, 19 Jan 2018 10:47:00 +0000 </pubDate>
</item>
<item>
<title>CBSD at FOSDEM 2018: Video available</title>
<description>CBSD at FOSDEM 2018:<br />
- CBSD, Isolation manager: How to manage jails, bhyve VMs and Xen via CBSD, while keeping it all simple<br />
by Goran Mekić<br />
</description>
<link>https://video.fosdem.org/2018/K.3.401/cbsd_isolation_manager.mp4</link>
<guid>CBSD at FOSDEM 2018: Video available</guid>
<pubDate>Mon, 05 Feb 2018 12:20:00 +0000</pubDate>
</item>
<item>
<title>CBSD 11.1.14 available</title>
<description>Relnotes:<br />
- HardenedBSD platform: fix official repo<br />
- jails: search for fastest mirror for base.txz<br />
- fix for boot order menu in [jb]config<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.14 available</guid>
<pubDate>Sat, 10 Feb 2018 10:47:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.15 available</title>
<description>Relnotes:<br />
- fix for inter=0 at nat framework question<br />
- [jb]consturct-tui: store previous profile choices<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.15 available</guid>
<pubDate>Wed, 14 Feb 2018 10:47:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.16 available</title>
<description>Relnotes:<br />
- bhyve: bclone: fixed dubbing in settings table<br />
- bhyve: Fixes for CentOS UEFI boot<br />
- dhcpd: refactoring. now we support real IP range in nodeippool<br />
- jail: add support for multiple VNET type interfaces<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.16 available</guid>
<pubDate>Wed, 21 Feb 2018 10:47:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.17 available</title>
<description>Relnotes:<br />
- bhyve: CPU topology support<br />
- bhyve: check ISO's CRC SHA256 sum (optional)<br />
- bhyve: an existing bridge can be selected (for those who customize/setup the interface themselves)<br />
- bhyve: Sparse ZVOL now by default. Can be reassigned via zfs_create_sparse="0" in $workdir/etc/zfs.conf<br />
- bhyve: grub-bhyve dependency has been removed:CBSD support OS only via UEFI due to the poor and unstable implementation of the grub-bhyve method, which is terrible<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.17 available</guid>
<pubDate>Sat, 07 Apr 2018 10:47:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.18 available</title>
<description>bugfix release<br />
- bugfix release<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.18 available</guid>
<pubDate>Tue, 10 Apr 2018 10:47:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.19 available</title>
<description>Relnotes<br />
- bhyve: Initial checkpoint<br />
- bhyve: update UEFI-EDK2 firmware, this fixes booting linux kernels >= 4.15 (Ubuntu 18.04+, Fedora 18+, Kali 2018 and so on)<br />
- initial support for syslog<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.19 available</guid>
<pubDate>Wed, 02 May 2018 06:02:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.1.20 available</title>
<description>bugfix release<br />
- bugfix release<br />
- jail: fix for broken jset. Reported by Egor Vershinin aka Dorlas, Issue #290<br />
- jail: fix starting RC twice in vnet jails. Reported, debug and fixes by Gijs Peskens aka gizahNL, Issue #291<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.1.20 available</guid>
<pubDate>Sun, 06 May 2018 00:08:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.2.0 available</title>
<description>Relnotes<br />
- ready for FreeBSD 11.2<br />
- jsnapshot: remove unnecessary exit from the cycle. Pointed via email by: Sean Greven<br />
- pkg: partial support for multiple jname mask<br />
- added CBSD ZSH-completions, suggested and created by Moviuro ( Issue #297 )<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.2.0 available</guid>
<pubDate>Mon, 28 May 2018 03:34:00 +0000 </pubDate>
</item>
<item>
<title>Reggae got added to FreeBSD ports tree</title>
<description>CBSD community, the ecosystem, the scale and level of the tasks is growing!<br />
Reggae port has been commited into official FreeBSD ports tree!<br />
- Freshports: https://www.freshports.org/sysutils/reggae/<br />
- Project home page: https://github.com/cbsd/reggae<br />
- Short intro and demo, by Goran Mekić: https://www.youtube.com/watch?v=6GPKO6Gp7b0<br />
</description>
<link>https://github.com/cbsd/reggae</link>
<guid>Reggae port</guid>
<pubDate>Wed, 07 Jul 2018 03:34:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 11.2.1 available</title>
<description>Relnotes<br />
- sysutils/reggae: got added to ports. This package helps with common DevOps tasks, and it uses CBSD jails to acomplish that<br />
- bugfix: jail: populate_cdir,switch_baserw: always use realpath. Reported by Juronski, Issue #287<br />
- bugfix: pkg info: secure pkg execution by time limit and non-interactive flags. Reported by Alex Petrov via Telegram<br />
- bugfix: bhyve tap not added to bridge when MTU different. Reported by Andreas Wrede aka awrede, Issue #301<br />
- bugfix: fixed the problem when some containers did not start, reported by (Reported and tested by: brahmann).<br />
- jail: disable allow_raw_sockets by default, added into jconstruct-tui/jconfig. Reported by ntinti, Issue #307<br />
- pkg: add support for mutliple mask in jname args for: query,install,remove,info<br />
- bhyve: manage storage controller (AHCI)<br />
- jlogin: support for jname as mask<br />
- bhyve: vm priority<br />
- improve remote resources support<br />
- jail: support for allow.mount.fusefs (on modern FreeBSD version only: 11.2+ and 12). CBSD options: allow_fusefs. FreeBSD r336565,D16371<br />
- bhyve : support for alternative checkpoints name <br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 11.2.1 available</guid>
<pubDate>Sat, 28 Jul 2018 05:14:00 +0000 </pubDate>
</item>
<item>
<title>bhyve live migration. Coming soon!</title>
<description>
- https://youtu.be/-IYNSBhtJqw<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD bhyve live migration</guid>
<pubDate>Thu, 06 Sep 2018 05:14:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 12.0.0 available</title>
<description>Relnotes<br />
- tested on FreeBSD 12<br />
- tested with XEN 4.11<br />
- bhyve: initial support for NVMe controller (no boot order)<br />
- bhyve: live migration support<br />
- jail: multiple ip adresses can be configured separately on interfaces without hosts config. Suggested by ntinti, Issue #306<br />
- [jb]import: support for multiple images specified in the command line<br />
- add create.d dir for post-creation action. Suggested by Annakan, Issue #321<br />
- srcup.conf: split conf per-platform<br />
- imghelper: store flat_size in bytes in header (as result: jimport now knows the amount of unpacked environment before unpacking)<br />
- jails: add support for allow_read_msgbuf (r339409)<br />
- bhyve: add bhyve_engine to run bhyve in gdb or lldb<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.0 available</guid>
<pubDate>Sat, 27 Oct 2018 10:28:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 12.0.1 available</title>
<description>Relnotes<br />
- bugfix release<br />
- jail: elf_tables: check jail for minor version too. Reported by Peter2121 (Issue #351)<br />
- bhyve: fix serial boot issue for UEFI GOP mode<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.1 available</guid>
<pubDate>Sat, 17 Nov 2018 05:48:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 12.0.2 available</title>
<description>Relnotes:<br />
<br />
- bhyve: bump uefi firmware to 0.2<br />
- cbsdd: cleanup logs for internal task<br />
- racct-stats: split daemon into three independent parts ( racct-jail-stats, racct-bhyve-stats and racct-hoster-stats ). (not enabled by default)<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.2 available</guid>
<pubDate>Sat, 24 Nov 2018 03:48:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 12.0.3 available</title>
<description>Relnotes:<br />
<br />
bugfix release:<br />
- quick and dirty workaround of the CentOS 7.6 (and probably RedHat) boot problem:<br />
Failed to set MokListRT: Invalid Parameter<br />
Something has gone seriously wrong: import_mok_state() failed<br />
CentOS guest users: please update immediately!<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.3 available</guid>
<pubDate>Tue, 04 Dec 2018 05:48:00 +0000 </pubDate>
</item>
<item>
<title>ClonOS 18.12 become to BETA</title>
<description>Development of the ClonOS is slowly but surely continuing<br />
<br />
<br />
The latest build has the following changes:<br />
- Change release model from rolling to fixed<br />
- update PHP to 7.3-RC<br />
- update CBSD to 12.0.2<br />
- bhyve and jails got the real-time graph: https://clonos.tekroutine.com/images/clonos_graph1.png<br />
<br />
Instruction for installing ClonOS on stock FreeBSD has been updated: https://clonos.tekroutine.com/installation_on_freebsd.html<br />
<br />
Feedback is very welcome!<br />
</description>
<link>https://clonos.tekroutine.com</link>
<guid>ClonOS become to BETA</guid>
<pubDate>Tue, 04 Dec 2018 06:48:00 +0000 </pubDate>
</item>
<item>
<title>ClonOS 19.01-RELEASE</title>
<description>first public ClonOS release!<br />
<br />
<br />
- fix memleak in RACCT stats<br />
- update PHP to 7.3<br />
- update CBSD to 12.0.4<br />
- bhyve and jails got the real-time graph: https://clonos.tekroutine.com/images/clonos_graph1.png<br />
<br />
Instruction for installing ClonOS on stock FreeBSD has been updated: https://clonos.tekroutine.com/installation_on_freebsd.html<br />
<br />
Feedback is very welcome!<br />
</description>
<link>https://clonos.tekroutine.com</link>
<guid>ClonOS 19.01-RELEASE</guid>
<pubDate>Thu, 24 Jan 2019 09:30:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 12.0.4 available</title>
<description>Relnotes:<br />
<br />
<br />
- xen: SPICE protocol for QEMU support (recent FreeBSD-13 (HEAD/CURRENT) only)<br />
- bhyve: added custom behavior settings by exit codes<br />
- CBSD WEB UI (aka ClonOS): got real-time graph and new dark themes<br />
- bhyve: (highly experimental) jailed bhyve on FreeBSD 12.0+ (articles by lattera)<br />
- jail: add support for allow_unprivileged_proc_debug settions (r341084)<br />
- add global.conf settings. For example you can disable CBSD color output by conf in addition to NOCOLOR env(1) vars, suggested by Moviuro, Issue #364<br />
- jail: sysrc: support for jname as mask<br />
- jail: opportunity to manage sources and configuration of receiving base via config file. Suggested by Adeel Mujahid aka am11, Issue #367<br />
- bhyve: storage controller management: now you can attach multiple vdisk to single AHCI controller<br />
- initenv: test and configure kern.init_shutdown_timeout sysctl(8). Pointed out: Marko Turk aka marko-turk, Issue #374<br />
- jail: split allow_sysvipc option. Pointed by ntinti, Issue #372<br />
- jail/bhyve: by default run virtual environment with nice=1<br />
- racct-*-stats: fix memleak with strsep<br />
- register_base: added auto_baseupdate params to control base auto-update. Reported by Пётр aka Peter2121, Issue #363<br />
- baseupdate: the ability to specify an individual base<br />
- mountfstab/makejconf: fix grep conditions for zfs. Reported by xvfl8mzajp, Issue #382<br />
- mountfstab: fix fstab parsing without CRLF. Reported by Peter2121, Issue #383<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.4 available</guid>
<pubDate>Sat, 16 Feb 2019 02:32:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.0.5 bugfix release available</title>
<description>Relnotes:<br />
<br />
<br />
fixes: jcoldmigrate: lock issue<br />
fixes: bconfig: choose vale switch<br />
fixes: j2slave: also include system directory<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.5 bugfix release available</guid>
<pubDate>Fri, 22 Feb 2019 01:32:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.0.6 available</title>
<description>Relnotes:<br />
<br />
<br />
cloud-init support (NoCloud data source method)<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.6 available</guid>
<pubDate>Web, 20 Mar 2019 01:30:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.0.7 bugfix release available</title>
<description>Relnotes:<br />
<br />
<br />
bugfix:reset is_cloud vars when switching profile (introduced in 12.0.6)<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.7 bugfix release vailable</guid>
<pubDate>Thu, 21 Mar 2019 01:33:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.0.8 available</title>
<description>Relnotes:<br />
<br />
<br />
bugfix: bhyve cloud-init: fix zfs volume size for raw images<br />
multiple cbsd_workdir support<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.8 bugfix release vailable</guid>
<pubDate>Tue, 02 Apr 2019 01:39:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.0.9 available</title>
<description>Relnotes:<br />
<br />
<br />
bhyve bcreate: mark the first disk bootable<br />
ability to customize colors via color.conf<br />
prepare CBSD code for RAFT/replication ( split cbsdsql to ro/rw call )<br />
passwordless node connect ( Issue #377, suggested by: @ntinti )<br />
<br />
fixes:<br />
fix help command ( reported by many )<br />
jail: extract_base from file<br />
bhyve: update vm_pid when domain restarts ( Issue #399, reported by @VVelox )<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.9 bugfix release vailable</guid>
<pubDate>Fri, 19 Apr 2019 02:39:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.0.10 available</title>
<description>Relnotes:<br />
<br />
<br />
bhyve: fix openbsd guest boot<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.10 bugfix release vailable</guid>
<pubDate>Thu, 25 Apr 2019 01:39:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.0.11 available</title>
<description>Relnotes:<br />
<br />
<br />
chase if_tap/if_tun consolidation ( r347241 )<br />
bhyve: FreeBSD cloud images<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.11 bugfix release vailable</guid>
<pubDate>Thu, 16 May 2019 02:59:00 +0000</pubDate>
</item>
<item>
<title>NetBSD Cloud image for CBSD: done</title>
<description><br />
<br />
<br />
NetBSD cloud image demo: https://youtu.be/3F_lh8s51_4<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>NetBSD Cloud image for CBSD available</guid>
<pubDate>Wed, 19 Jun 2019 04:59:00 +0000</pubDate>
</item>
<item>
<title>Windows Cloud image via cloudbase: now supported</title>
<description><br />
<br />
<br />
Windows server cloud image demo: https://youtu.be/PDkxrHb5Xt8<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>Windows cloud image supported by CBSD</guid>
<pubDate>Sat, 22 Jun 2019 03:48:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.0.12 available</title>
<description>Relnotes:<br />
<br />
<br />
initenv: no longer suggest using port 22222 ssh port by default<br />
initenv: make a hook for custom/user scripts during the initenv stage ( initenv-hooks )<br />
bhyve: manage sectorsize with dsk_sectorsize params via global conf and per-profile<br />
cloud-init helper: added ci_user_pw_user and ci_user_pw_root params<br />
bhyve: one global dataset per vm (ZFS platform only)<br />
bhyve: add 'persistent' flag for virtual nic: mark interface as unmanaged by CBSD<br />
jswmode: support jname as mask<br />
jexport: show progress on ZFS platform + ranomize/round progress percent by step ~10<br />
bhyve: bls: rename vnc_port column to "meta" field: vnc ( bhyve_vnc_tcp_bind:vnc_port )<br />
add external_exec_local_script as hook for local scripts ( remove.d for [jbx]remove rename.d for [jbx]rename clone.d for [jbx]clone) ) Suggested by: haynesjustin, Issue #373<br />
bhyve: check that the bhyve_vnc_tcp_bind address is available for use (when not 127.0.0.1 or 0.0.0.0)<br />
bhyve: cloudbase helper for Windows cloud image ( demo )<br />
bhyve: NetBSD cloud profile ( demo )<br />
fixes: segmentation fault when updating bhyve tables, Reported by goligo, Issue #371<br />
cloud-init: use dedup by default for GOLD images on ZFS platform (regulated through the zfs.conf configuration file)<br />
bhyve: sectorsize=4096 for disk by default!<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.12 available</guid>
<pubDate>Sat, 22 Jun 2019 08:41:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.0.13 available</title>
<description>Relnotes:<br />
<br />
<br />
bhyve: added hda emulation support ( FreeBSD 13-CURRENT, r349355+ );<br />
fix bhyve export/import;<br />
fix cbsdd status pid ( reported and fixed by: spagu, Issue #417 );<br />
jail: fix directory permission created by cbsd script inside basejail hier ( reported by: VincentBentley, Issue #419 )<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.13 available</guid>
<pubDate>Thu, 04 Jul 2019 09:05:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.0.14 available</title>
<description>Relnotes:<br />
<br />
<br />
jail: fix jimport script ( the wrong structure was unpacked )<br />
jail: jclone: re-initializate hwaddr for cloned vnet jail<br />
jail: better basename management ( suggested by: ntinti, Issue #327<br />
xen: add disk management ( sync code with bhyve )<br />
xen: nested virtualization property added<br />
cloud-init: switched to using own cloud images ( provided by CBSD/ClonOS Project )<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.0.14 available</guid>
<pubDate>Wed, 14 Aug 2019 09:02:00 +0000</pubDate>
</item>
<item>
<title>new article: broker driven CBSD cluster (sample)</title>
<description>new article: broker driven CBSD cluster (sample)<br />
<br />
<br />
https://www.bsdstore.ru/en/broker_driven_sample_ssi.html<br />
an example of asynchronous interaction/interface with CBSD<br />
for building jail/bhyve/XEN clusters;<br />
</description>
<link>https://www.bsdstore.ru/en/broker_driven_sample_ssi.html</link>
<guid>new article: broker driven CBSD cluster sample</guid>
<pubDate>Wed, 11 Sep 2019 03:37:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.0 available</title>
<description>Relnotes:<br />
<br />
<br />
bhyve: fixes for brename ( reported by jas via Telegram )<br />
bhyve: change zvol name for virtual disk: dskX.vhd instead of bcbsd-$jname-dskX.vhd<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.0 available</guid>
<pubDate>Wed, 11 Sep 2019 09:45:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.1 available</title>
<description>bugfix release. fixes for:<br />
<br />
<br />
initenv failed if tmux is missing (reported by KS Leung, Issue #431)<br />
jail: floatresolv always worked even if the value set to 0 (disabled) (reported by Ivan Safonov via Telegram)<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.1 available</guid>
<pubDate>Fri, 13 Sep 2019 09:41:00 +0000</pubDate>
</item>
<item>
<title>ClonOS 19.09-RELEASE</title>
<description>ClonOS 19.09-RELEASE!<br />
<br />
<br />
FreeBSD 13.0-CURRENT (r352386)<br />
cloud-init support (see errata)<br />
fixed fbbuf/vesa video issue with some recent Linux distros ( Kali Linux, Parrot, etc..)<br />
p9fs support (*)<br />
CBSD updated to 12.1.1<br />
fixed known SQL injection vulnerabilities<br />
<br />
Feedback is very welcome!<br />
</description>
<link>https://clonos.tekroutine.com/download.html</link>
<guid>ClonOS 19.09-RELEASE</guid>
<pubDate>Sun, 22 Sep 2019 09:34:00 +0000 </pubDate>
</item>
<item>
<title>CentOS 8.0 cloud image for CBSD</title>
<description>CentOS 8.0 cloud image for CBSD!<br />
<br />
<br />
CentOS 8.0 cloud image ready!<br />
https://youtu.be/BPLp36haac0<br />
<br />
</description>
<link>https://youtu.be/BPLp36haac0</link>
<guid>CentOS 8.0 cloud image for CBSD</guid>
<pubDate>Wed, 25 Sep 2019 02:34:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 12.1.2 available</title>
<description>CBSD 12.1.2 available<br />
<br />
<br />
FreeBSD 12.1 cloud image ready<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.2 available</guid>
<pubDate>Tue, 05 Nov 2019 09:21:00 +0000</pubDate>
</item>
<item>
<title>FreeBSD XEN live migration: FreeBSD guest (via CBSD)</title>
<description>FreeBSD XEN live migration: FreeBSD guest (via CBSD)<br />
<br />
<br />
demo: https://youtu.be/6vURTjVRsAY<br />
</description>
<link>https://youtu.be/6vURTjVRsAY</link>
<guid>FreeBSD XEN live migration: FreeBSD guest (via CBSD)</guid>
<pubDate>Tue, 31 Dec 2019 09:01:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.3 available</title>
<description>CBSD 12.1.3 available<br />
<br />
<br />
bhyve: bconstruct-tui: ability to revert/reset GIT updates for profile<br />
bhyve: added master_reboot hook for reboot bhyve vm custom action<br />
ssh keygen: ED25519 by default instead of RSA<br />
bhyve: IPv6 support for UEFI GOP bhyve VNC tcp bind<br />
xen: vm save/restore support ( xcheckpoint )<br />
xen: live migration support ( xmigrate, demo: https://youtu.be/6vURTjVRsAY )<br />
jail pkg module: several improvements: retry, exit code behavior, configuration file ( sample: /usr/local/cbsd/modules/pkg.d/etc-sample/pkg.conf )<br />
repo: fixes for action=get source=src - fetch source tree from official FreeBSD resources.<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.3 available</guid>
<pubDate>Sat, 04 Jan 2020 03:31:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.4 available</title>
<description>CBSD 12.1.4 bugfix release<br />
<br />
<br />
bugfix release<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.4 available</guid>
<pubDate>Sun, 05 Jan 2020 03:31:00 +0000</pubDate>
</item>
<item>
<title>Deploying Kubernetes with CBSD</title>
<description>Deploying Kubernetes with CBSD<br />
<br />
<br />
https://www.bsdstore.ru/en/articles/cbsd_k8s_part1.html<br />
</description>
<link>https://www.bsdstore.ru/en/articles/cbsd_k8s_part1.html</link>
<guid>Deploying Kubernetes with CBSD</guid>
<pubDate>Mon, 27 Jan 2020 09:01:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.5 available</title>
<description>CBSD 12.1.5 available<br />
<br />
<br />
mnt_start options for external storage mount<br />
[jbx]ls, [jbx]get: custom facts<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.5 available</guid>
<pubDate>Sun, 02 Feb 2020 03:11:00 +0000</pubDate>
</item>
<item>
<title>OpenBSD 6.6 cloud image for CBSD</title>
<description>OpenBSD 6.6 cloud image for CBSD!<br />
<br />
<br />
OpenBSD 6.6 cloud image ready!<br />
https://youtu.be/UOysrdvDYUQ<br />
<br />
</description>
<link>https://youtu.be/UOysrdvDYUQ</link>
<guid>OpenBSD 6.6 cloud image for CBSD</guid>
<pubDate>Sat, 14 Mar 2020 02:37:00 +0000 </pubDate>
</item>
<item>
<title>CBSD 12.1.6 available</title>
<description>CBSD 12.1.6 bugfix release<br />
<br />
<br />
*ls, *get: custom facts<br />
support for DHCPv6 in ip4_addr ( automatic IPv6 assignment from node pool )<br />
bugfix: bhyve: bclone fixes<br />
bugfix: jail: jclone: fixes for fstab dir location<br />
bugfix: jail: j2prepare: fixes for fstab dir location<br />
bugfix: jail: j2prepare: check for remote CBSD version<br />
bugfix: jail: jrename: fixes for fstab dir location<br />
bhyve: OpenBSD 6.6 cloud image<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.6 available</guid>
<pubDate>Sun, 15 Mar 2020 03:49:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.7 available</title>
<description>CBSD 12.1.7 bugfix release<br />
<br />
<br />
fixes: jail services started twice when vnet=1 or zfs dataset attached to jail<br />
fixes: fix jstart to properly call /etc/rc<br />
fixes: jexec removing options from command<br />
jail: etcupdate script wrapper<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.7 available</guid>
<pubDate>Wed, 25 Mar 2020 03:49:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.8 available</title>
<description>CBSD 12.1.8 bugfix release<br />
<br />
<br />
fixes: fix regression in jexec introduced in 12.1.7<br />
fixes: fix bimport script ( missing macro), #482<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.8 available</guid>
<pubDate>Sun, 05 Apr 2020 11:49:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.9 available</title>
<description>CBSD 12.1.9 release<br />
<br />
<br />
bhyve: Ubuntu 20.04 LTS cloud image<br />
bhyve: add hdd_boot_firmware for alternative boot firmware for hdd<br />
jail: qemu-usermode: qemu-ppc64-static jail option (however, it does not seem to work correctly)<br />
jls: extra column etcver for etcupdate version<br />
jail: etcupdate helper<br />
dhcpdv4: can use range in the last octet, e.g: 10.0.0.10-16<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.9 available</guid>
<pubDate>Fri, 24 Apr 2020 11:29:00 +0000</pubDate>
</item>
<item>
<title>new article: FreeBSD clustering: VPC with CBSD</title>
<description>new article: FreeBSD clustering: VPC with CBSD<br />
<br />
<br />
https://www.bsdstore.ru/en/articles/cbsd_vpc_init.html<br />
build your virtual networks with vxlan(4) and CBSD<br />
</description>
<link>https://www.bsdstore.ru/en/articles/cbsd_vpc_init.html</link>
<guid>new article: FreeBSD clustering: VPC with CBSD</guid>
<pubDate>Sun, 03 May 2020 03:37:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.10 available</title>
<description>CBSD 12.1.10 release<br />
<br />
<br />
jail: add missing allow_lin{proc,sys}fs params<br />
bhyve: manage UUID<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.10 available</guid>
<pubDate>Wed, 06 May 2020 11:13:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.11 available</title>
<description>CBSD 12.1.11 release<br />
<br />
<br />
fixed jstop script to work correctly when the jails are on a bridge interface<br />
CBSDfile: up/destroy script: vagrant-like behavior<br />
</description>
<link>https://www.bsdstore.ru/en/cbsdfile.html</link>
<guid>CBSD 12.1.11 available</guid>
<pubDate>Fri, 15 May 2020 11:50:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.12 available</title>
<description>CBSD 12.1.12 release<br />
<br />
<br />
bugfix: VALE: changed port names: ID instead of $jname (due to the VALE port name length limit)<br />
bhyve: manage MTU for virtio ( r359704 ) and cloud-init<br />
bhyve: NetBSD 9.0 cloud image<br />
CBSDfile: check the postcreate error code and destroy the environment if it fails<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.12 available</guid>
<pubDate>Mon, 01 Jun 2020 11:22:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.13 available</title>
<description>CBSD 12.1.13 release<br />
<br />
<br />
bhyve: fix $jailsysdir directory when no mnt_start and no ZFS<br />
bhyve: cloud-init: use "gpart commit" to confirm changes when cloning from a gold volume<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.13 available</guid>
<pubDate>Mon, 22 Jun 2020 11:21:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.14 available</title>
<description>CBSD 12.1.14 release<br />
<br />
<br />
fix build on FreeBSD 13-CURRENT<br />
fix brename, Issue #510<br />
checkip: also check ip on local ifaces<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.14 available</guid>
<pubDate>Mon, 22 Aug 2020 12:01:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.15 available</title>
<description>CBSD 12.1.15 release<br />
<br />
<br />
cbsdsh: fix crash: exited on signal 6<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.15 available</guid>
<pubDate>Mon, 31 Aug 2020 11:02:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.1.16 available</title>
<description>CBSD 12.1.16 release<br />
<br />
<br />
bhyve: bhyverun_wrapper: alternative/custom bhyve start script, Issue #476<br />
bhyve: get_next_vale: add exclude list to skip already used VALE port when vm off<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.1.16 available</guid>
<pubDate>Sat, 26 Sep 2020 11:02:00 +0000</pubDate>
</item>
<item>
<title>New CBSD sub-project has beed started: k8s-bhyve</title>
<description>New CBSD sub-project has been started: k8s-bhyve<br />
<br />
<br />
As before, we are focused on the development and distribution of FreeBSD as a platform<br />
for hosting useful services. Today kubernetes is a very popular rail for quickly deploying containers.<br />
We will show you soon how FreeBSD can be useful for a Linux-only solution like a K8S.<br />
Please meet: https://k8s-bhyve.convectix.com<br />
As usual - it's free, open and BSD-licensed<br />
Open task/looking for support: https://www.reddit.com/r/freebsd/comments/jgtbng/k8sbhyve_project_looking_for_free_testing/<br />
</description>
<link>https://k8s-bhyve.convectix.com</link>
<guid>New CBSD sub-project has beed started: k8s-bhyve</guid>
<pubDate>Sun, 25 Oct 2020 12:02:00 +0000</pubDate>
</item>
<item>
<title>Thank you for support: new server for ClonOS/CBSD development was rented!</title>
<description>Thank you for support: new server for ClonOS/CBSD development was rented!<br />
<br />
<br />
With the help of donors, we raised a sufficient amount to rent a server in Hetzner DC (Germany)<br />
for the infrastructure of the CBSD and ClonOS project.<br />
Finally, project development has moved from a local laptop to a stable powerfull server.<br />
We thank you for your support!<br />
</description>
<link>https://www.patreon.com/clonos</link>
<guid>Thank you for support: new server for ClonOS/CBSD development was rented!</guid>
<pubDate>Sun, 25 Oct 2020 13:02:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.2.0 available</title>
<description>CBSD 12.2.0 release<br />
<br />
<br />
tested with FreeBSD 12.2-RELEASE<br />
added Bash autocompletion file for most common used commands: (thanks to kr0mBagheera)<br />
dhcpd, get-next-tcp-port script: add lock wrapper to avoid collisions when running simultaneously<br />
up/destroy: added pre/post hooks per environment<br />
FreeBSD 12.2 cloud image ready<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.2.0 available</guid>
<pubDate>Thu, 29 Oct 2020 11:01:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.2.1 available</title>
<description>CBSD 12.2.1 release<br />
<br />
<br />
jails: improve qemu-based jails (mirror for base.txz was restored), repo script fixes<br />
jails: qemu-based RISCV64 arch has been added ( Thanks to: Loïc Bartoletti )<br />
freejname script: fix collisions when running simultaneously<br />
bhyve imgsize params: allow float value, e.g: 1.5g, 0.5t<br />
bhyve: NetBSD 9.1 cloud profile<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.2.1 available</guid>
<pubDate>Tue, 10 Nov 2020 10:01:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.2.2 available</title>
<description>CBSD 12.2.2 release<br />
<br />
<br />
added 'module' command to manage CBSD modules<br />
added K8S module: deploy kubernetes cluster with CBSD: https://www.bsdstore.ru/en/12.x/wf_k8s_ssi.html<br />
up script: randomize delayed before start when multiple env<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.2.2 available</guid>
<pubDate>Mon, 16 Nov 2020 11:01:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.2.3 available</title>
<description>CBSD 12.2.3 release<br />
<br />
<br />
fix target_arch: this fixes repo script for non-x86 arch<br />
fix build on non-x86 arch<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.2.3 available</guid>
<pubDate>Fri, 20 Nov 2020 11:01:00 +0000</pubDate>
</item>
<item>
<title>CBSD 12.2.4 available</title>
<description>CBSD 12.2.4 release<br />
<br />
<br />
jail2iso script: remove boot1.efifat (deprecated for FreeBSD 13)<br />
remove ping6 from code for FreeBSD 13 (deprecated for FreeBSD 13)<br />
cbsd --help: fix warning<br />
</description>
<link>https://www.bsdstore.ru</link>
<guid>CBSD 12.2.4 available</guid>
<pubDate>Mon, 21 Dec 2020 12:01:00 +0000</pubDate>