-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathrubygem-agama-yast.changes
More file actions
2111 lines (1431 loc) · 83.3 KB
/
rubygem-agama-yast.changes
File metadata and controls
2111 lines (1431 loc) · 83.3 KB
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
-------------------------------------------------------------------
Tue Mar 17 12:15:21 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 19
-------------------------------------------------------------------
Mon Mar 16 16:54:19 UTC 2026 - José Iván López González <jlopez@suse.com>
- Report an error if storage needs to be probed meanwhile DASD is
formatting (related to bsc#1259354).
-------------------------------------------------------------------
Fri Mar 13 15:50:31 UTC 2026 - Ancor Gonzalez Sosa <ancor@suse.com>
- Fix the id reported to identify the encryption method used for
TPM-based unlocking (bsc#1258486).
-------------------------------------------------------------------
Thu Mar 12 13:03:36 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add errors to the output of agama-autoyast (related to bsc#1259434).
-------------------------------------------------------------------
Thu Mar 12 08:35:23 UTC 2026 - Ancor Gonzalez Sosa <ancor@suse.com>
- Infer the boot device, if omitted in the user configuration, when
reusing a pre-existing LVM or RAID (bsc#1248504).
-------------------------------------------------------------------
Tue Mar 10 12:17:59 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Do not automatically update issues con language change. When to
update them is handled by agama-web-server (gh#agama-project/agama#3262).
-------------------------------------------------------------------
Fri Mar 6 13:03:21 UTC 2026 - Ancor Gonzalez Sosa <ancor@suse.com>
- Allow to reuse LVM volume groups, volumes and thin pools
(jsc#PED-15104, bsc#1254718 and gh#agama-project/agama#3171).
-------------------------------------------------------------------
Tue Mar 3 12:35:55 UTC 2026 - José Iván López González <jlopez@suse.com>
- Provide new D-Bus API for zFCP (gh#agama-project/agama#3184).
-------------------------------------------------------------------
Fri Feb 27 10:40:40 UTC 2026 - José Iván López González <jlopez@suse.com>
- Replace D-Bus methods by attributes in order to allow caching
data (related to bsc#1258466).
-------------------------------------------------------------------
Thu Feb 26 16:47:39 UTC 2026 - David Diaz <dgonzalez@suse.com>
- Allow reactivating a DASD if enabling DIAG failed
(gh#agama-project/agama#3143).
-------------------------------------------------------------------
Wed Feb 18 20:28:02 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Add support for updateNvram bootloader key (jsc#PED-14224)
- Add support for AutoYaST key bootloader->update_nvram conversion
-------------------------------------------------------------------
Mon Feb 16 16:31:50 UTC 2026 - José Iván López González <jlopez@suse.com>
- Avoid automatic deactivation of unlisted DASD devices
(gh#agama-project/agama#3181).
-------------------------------------------------------------------
Fri Feb 13 09:22:48 UTC 2026 - José Iván López González <jlopez@suse.com>
- Calculate bootloader after calling to probe or activate storage
(related to bsc#1258134).
-------------------------------------------------------------------
Fri Feb 13 08:12:01 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Fix clearing bootloader cache to ensure that proper storage
configuration is used (bsc#1258134)
-------------------------------------------------------------------
Thu Feb 12 15:22:50 UTC 2026 - Ancor Gonzalez Sosa <ancor@suse.com>
- Fix reading the startup mode in iSCSI
(gh#agama-project/agama#3161).
-------------------------------------------------------------------
Thu Feb 12 08:33:58 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Split storage writting config and final unmount action
(bsc#1257791)
-------------------------------------------------------------------
Wed Feb 11 14:48:58 UTC 2026 - José Iván López González <jlopez@suse.com>
- Fix JSON of DASD format summary (gh#agama-project/agama#3128).
-------------------------------------------------------------------
Fri Feb 6 15:25:36 UTC 2026 - José Iván López González <jlopez@suse.com>
- Provide new D-Bus API for DASD (gh#agama-project/agama#3110).
-------------------------------------------------------------------
Wed Feb 4 14:01:15 UTC 2026 - Ancor Gonzalez Sosa <ancor@suse.com>
- Identify iSCSI nodes using the combination of name and portal
(gh#agama-project/agama#3123).
-------------------------------------------------------------------
Mon Feb 2 08:13:48 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Allow other parts to define in bootloader its proposed kernel
parameters (gh#agama-project/agama#3103)
-------------------------------------------------------------------
Fri Jan 30 16:21:23 UTC 2026 - Ancor Gonzalez Sosa <ancor@suse.com>
- Change how Btrfs information (snapshots and immutable) is
represented in the storage model and in the volume templates
(related to jsc#PED-14307).
-------------------------------------------------------------------
Thu Jan 29 09:55:38 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Retry requests to the web server if the connection failed
(gh#agama-project/agama#3096, related to bsc#1257067).
-------------------------------------------------------------------
Wed Jan 28 09:51:16 UTC 2026 - José Iván López González <jlopez@suse.com>
- Configure storage and iSCSI only if needed
(gh#agama-project/agama#3064).
-------------------------------------------------------------------
Mon Jan 26 06:49:56 UTC 2026 - José Iván López González <jlopez@suse.com>
- Provide new D-Bus API for iSCSI (gh#agama-project/agama#3008).
-------------------------------------------------------------------
Fri Jan 23 13:47:45 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Temporarily disable the check of os-prober to avoid
trying to access libzypp (gh#agama-project/agama#3053).
-------------------------------------------------------------------
Fri Jan 23 10:28:20 UTC 2026 - Martin Wilck <mwilck@suse.com>
- Drop dependency on dmraid (jsc#PED-15368)
-------------------------------------------------------------------
Thu Jan 22 12:50:32 UTC 2026 - Ancor Gonzalez Sosa <ancor@suse.com>
- Stop reporting a bootloader error when there is no valid storage
proposal (bsc#1257013).
-------------------------------------------------------------------
Wed Jan 21 10:24:50 UTC 2026 - Ancor Gonzalez Sosa <ancor@suse.com>
- Honor the read_only flag for volumes coming from the product
configuration (bsc#1253616).
-------------------------------------------------------------------
Tue Jan 20 12:36:32 UTC 2026 - Martin Vidner <mvidner@suse.com>
- refactor install_translations.sh for readability and testability
(part of Rust translations enablement, gh#agama-project/agama#2949).
-------------------------------------------------------------------
Wed Jan 14 08:54:50 UTC 2026 - José Iván López González <jlopez@suse.com>
- Properly disable BLS according to the selected product
(gh#agama-project/agama#3011).
-------------------------------------------------------------------
Fri Jan 9 14:43:58 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 19.pre
- Introduce the version 2 of the HTTP API (gh#agama-project/agama#2997).
- Drop most of the services because they have been ported to Rust.
- Adapt the storage D-Bus service API to the new approach.
-------------------------------------------------------------------
Fri Dec 12 06:21:47 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix systemd target import from AutoYaST profiles
(gh#agama-project/agama#2826).
-------------------------------------------------------------------
Thu Nov 13 13:30:58 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Do not build on 32bit arches (like i586) and PPC64-BE,
the dependant libsuseconnect does not support these (bsc#1251846)
-------------------------------------------------------------------
Wed Nov 12 15:42:26 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 18
-------------------------------------------------------------------
Fri Nov 7 15:14:51 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Fixed an error in the calculation of partitions when several
MD RAIDs are created (bsc#1253145).
-------------------------------------------------------------------
Fri Oct 31 13:48:46 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Use a version of yast2-iscsi-client that fixes the errors
reported at bsc#1247711.
-------------------------------------------------------------------
Mon Sep 15 13:50:54 UTC 2025 - José Iván López González <jlopez@suse.com>
- Fix JSON conversion for not configured sizes (bsc#1249591).
-------------------------------------------------------------------
Fri Sep 12 08:14:28 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Update translations (bsc#1249378)
-------------------------------------------------------------------
Tue Sep 2 12:24:12 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Do not use the D-Bus interface for localization
(gh#agama-project/agama#2684).
-------------------------------------------------------------------
Wed Aug 27 10:23:31 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Fix calling GPG import callbacks for unattended installation for
addons (bsc#1248782)
-------------------------------------------------------------------
Mon Aug 25 19:47:35 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Improved initialization of iBFT (bsc#1247711).
-------------------------------------------------------------------
Wed Aug 20 10:16:04 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Removed the heuristic that used to consider some software RAID as
bootable devices under some circumstances (bsc#1248195).
- Ensure that /boot/efi and /boot/zipl partitions created using the
web UI are never encrypted (bsc#1248189, bsc#1247447).
-------------------------------------------------------------------
Thu Aug 7 10:57:30 UTC 2025 - José Iván López González <jlopez@suse.com>
- Do not use 'retry' as default answer for questions (bsc#1247436).
-------------------------------------------------------------------
Wed Aug 6 12:47:13 UTC 2025 - José Iván López González <jlopez@suse.com>
- Emit D-Bus signal when storage is configured, including the
client id (gh#agama-project/agama#2640).
-------------------------------------------------------------------
Tue Aug 5 14:01:23 UTC 2025 - José Iván López González <jlopez@suse.com>
- Fix MD RAID config checker to avoid generating a list of issues
including a false value (bsc#1247557, bsc#1247585).
-------------------------------------------------------------------
Thu Jul 31 07:34:52 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Do not set selinux policy during installation and lets keep
defaults provided by packages
(bsc#1247046)
-------------------------------------------------------------------
Thu Jul 24 21:09:25 UTC 2025 - José Iván López González <jlopez@suse.com>
- Make encryption work with whole formatted devices (bsc#1246939).
- Do not export partitions to json if there is no partition
(bsc#1246940).
-------------------------------------------------------------------
Mon Jul 21 15:07:39 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 17
-------------------------------------------------------------------
Thu Jul 17 14:45:23 UTC 2025 - José Iván López González <jlopez@suse.com>
- Report all steps of the storage progress
(gh#agama-project/agama#2565).
-------------------------------------------------------------------
Thu Jul 17 10:34:38 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Adjust the information included in the logs (gh#agama-project/agama#2575).
-------------------------------------------------------------------
Wed Jul 16 07:29:03 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Add AutoYaST conversion for DASD and zFCP sections
(gh#agama-project/agama#2551)
-------------------------------------------------------------------
Tue Jul 15 10:53:18 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Do not overwrite the list of chosen patterns when selecting an LSM
(gh#agama-project/agama#2560).
- Extend products definition with the possibility to define whether a
user pattern should be pre-selected or not.
-------------------------------------------------------------------
Mon Jul 14 15:57:59 UTC 2025 - José Iván López González <jlopez@suse.com>
- Save registration code and email, even if registration fails
(related to jsc#AGM-156).
-------------------------------------------------------------------
Mon Jul 14 11:32:19 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Install the packages from DUD to the target system
(gh#agama-project/agama#2543)
- Allow ignoring GPG signature problems for the DUD packages using
the "inst.dud_packages.gpg=0" boot parameter
(problems for packages from other repositories are still reported)
- Fixed parsing the boot command line options,
using both nested and parent option would crash the installer
(like "inst.foo" with "inst.foo.bar")
-------------------------------------------------------------------
Thu Jul 10 12:13:14 UTC 2025 - José Iván López González <jlopez@suse.com>
- Inhibit storage subsystems (bsc#1245159, bsc#1246133).
-------------------------------------------------------------------
Wed Jul 9 14:04:23 UTC 2025 - Martin Vidner <mvidner@suse.com>
- Fix error at /api/manager/installer: initialize the backend value
for org.opensuse.Agama1.Manager.CurrentInstallationPhase (bsc#1245760)
-------------------------------------------------------------------
Wed Jul 9 12:21:55 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Add AutoYaST conversion for RMT registration (gh#agama-project/agama#2545).
-------------------------------------------------------------------
Wed Jul 9 08:32:37 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Handle the LSM defined in the product definition as it was
selected by the user allowing to deselect it (bsc#1244431).
-------------------------------------------------------------------
Fri Jul 4 11:31:21 UTC 2025 - José Iván López González <jlopez@suse.com>
- Extend D-Bus API to allow reprobing the system
(gh#agama-project/agama#2532, bsc#1245400).
-------------------------------------------------------------------
Wed Jul 2 10:50:56 UTC 2025 - José Iván López González <jlopez@suse.com>
- Add missing iSCSI discovery when importing the iSCSI config
(bsc#1245171).
-------------------------------------------------------------------
Mon Jun 30 15:51:33 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 16
-------------------------------------------------------------------
Mon Jun 30 11:23:03 UTC 2025 - Martin Vidner <mvidner@suse.com>
- ipmitool invocation: do not write spurious % percent sign
(jsc#PED-12285)
-------------------------------------------------------------------
Fri Jun 27 14:02:57 UTC 2025 - Michal Filka <mfilka@suse.com>
- jsc#PED-11193
- do not create the "after install" snapshot
-------------------------------------------------------------------
Fri Jun 27 12:07:35 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix the conversion of the "language" section from AutoYaST profiles
(gh#agama-project/agama#2516).
-------------------------------------------------------------------
Wed Jun 25 20:29:58 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- do not crash if onlyRequired flag is set and libzypp is not
installed on target system (jsc#AGM-154)
-------------------------------------------------------------------
Wed Jun 25 07:55:53 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- allow to set onlyRequired flag for software service
(jsc#AGM-154)
-------------------------------------------------------------------
Mon Jun 23 07:22:22 UTC 2025 - Michal Filka <mfilka@suse.com>
- jsc#PED-12285
- initial implementation for installer state status report via
IPMI
-------------------------------------------------------------------
Thu Jun 19 10:21:13 UTC 2025 - José Iván López González <jlopez@suse.com>
- Add missing steps for iSCSI installation
(gh#agama-project/agama#2473).
-------------------------------------------------------------------
Wed Jun 18 12:28:14 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Disable local installation repositories instead of removing them
(bsc#1243064)
-------------------------------------------------------------------
Wed Jun 18 07:17:23 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Preserve AutoYaST pre-scripts artifacts (bsc#1243776, gh#agama-project/agama#2344).
-------------------------------------------------------------------
Mon Jun 16 14:26:06 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Initial support for sorting storage devices when searching them
at the configuration (gh#agama-project/agama#2474).
-------------------------------------------------------------------
Fri Jun 13 20:51:10 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Fix copy of self-signed certificates for RMT
(gh#agama-project/agama#2480)
-------------------------------------------------------------------
Fri Jun 13 15:11:18 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Send the current language to the registration server (SCC/RMT)
to display localized error messages (gh#agama-project/agama#2477)
-------------------------------------------------------------------
Fri Jun 13 08:23:46 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Split registration key and registered status to support RMT with
empty registration key (gh#agama-project/agama#2469)
-------------------------------------------------------------------
Thu Jun 12 05:20:10 UTC 2025 - José Iván López González <jlopez@suse.com>
- AutoYaST support: add support for iscsi-client section
(gh#agama-project/agama#2463).
-------------------------------------------------------------------
Tue Jun 10 12:08:44 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- AutoYaST support: add support for add-on elements
(gh#agama-project/agama#2458)
-------------------------------------------------------------------
Mon Jun 9 06:12:23 UTC 2025 - José Iván López González <jlopez@suse.com>
- Extend the D-Bus API to get available/candidate drives and MD
RAIDs (gh#agama-project/agama#2419).
- Improve the config conversion from model to add missing MD RAIDs
if needed (e.g., the MD RAID was selected as boot device or as
target for LVM).
-------------------------------------------------------------------
Fri Jun 6 10:22:36 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Propose to move existing connections to disk if there is no one
to be persisted (custom config provided)
(gh#agama-project/agama#2402).
-------------------------------------------------------------------
Thu Jun 5 15:44:06 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- agama-dbus-monitor: Increase timeout when restarting to prevent
crash due to socket not available
-------------------------------------------------------------------
Thu Jun 5 15:41:31 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Add support to specify for extra repositories if it can be
unsigned or list of GPG fingerprints that are trusted
(jsc#AGM-125)
-------------------------------------------------------------------
Tue Jun 3 12:22:41 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Add support for adding extra repositories as installation sources
(jsc#AGM-125)
-------------------------------------------------------------------
Wed May 28 14:19:28 UTC 2025 - José Iván López González <jlopez@suse.com>
- Try several attempts for the first storage proposal
(gh#agama-project/agama#2393).
-------------------------------------------------------------------
Wed May 28 07:51:36 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Unselect user patterns which are unselected by a conflict
resolution (followup for gh#agama-project/agama#2348)
-------------------------------------------------------------------
Mon May 26 21:33:40 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Copy Agama generated systemd network link files to the target
system (bsc#1237327, bsc#1241969).
-------------------------------------------------------------------
Mon May 26 19:51:50 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 15
-------------------------------------------------------------------
Mon May 26 09:44:54 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Set stopOnBootMenu to "true" when a negative timeout is
set in the bootloader section of an AutoYaST profile
(bsc#1243623).
-------------------------------------------------------------------
Fri May 23 12:37:31 UTC 2025 - José Iván López González <jlopez@suse.com>
- Add checks to the storage config to avoid using wrong devices as
target for boot partitions (gh#agama-project/agama#2390).
-------------------------------------------------------------------
Fri May 23 11:59:20 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Introduce a new ProgressChanged signal which should be used
instead of PropertiesChanged (gh#agama-project/agama#2389).
-------------------------------------------------------------------
Fri May 23 10:39:21 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Properly report if registration failed when adding new libzypp
service obtained from registration server (bsc#1238851)
-------------------------------------------------------------------
Fri May 23 09:27:04 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Allow to specify a software RAID (mdRaids) as explicit boot
device (gh#agama-project/agama#2386).
-------------------------------------------------------------------
Thu May 22 17:21:24 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Include RAIDs at the model for the storage UI
(gh#agama-project/agama#2346).
-------------------------------------------------------------------
Thu May 22 16:18:06 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Provide software conflicts D-Bus API (gh#agama-project/agama#2348)
-------------------------------------------------------------------
Fri May 16 08:45:58 UTC 2025 - José Iván López González <jlopez@suse.com>
- Fix list of candidate drives and candidate MD RAIDs for
installation (gh#agama-project/agama#2362).
-------------------------------------------------------------------
Wed May 14 15:15:47 UTC 2025 - José Iván López González <jlopez@suse.com>
- Add search conditions to storage (gh#agama-project/agama#2338).
-------------------------------------------------------------------
Wed May 14 10:22:24 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Fix the target path for copying the udev rules and nvme files
introduced by (bsc#123808, gh#agama-project/agama#2257).
(bsc#1241868, gh#agama-project/agama#2328).
-------------------------------------------------------------------
Fri May 9 15:37:04 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Convert the bootloader section to JSON (gh#agama-project/agama#2349).
- Fix the conversion of the hostname and the networking sections to JSON
(gh#agama-project/agama#2349).
-------------------------------------------------------------------
Wed May 7 10:24:14 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Convert AutoYaST DNS section to JSON (gh#agama-project/agama#2335).
-------------------------------------------------------------------
Wed May 7 06:33:28 UTC 2025 - José Iván López González <jlopez@suse.com>
- Add support for creating and reusing MD RAID devices
(gh#agama-project/agama#2286, bsc#1241958).
-------------------------------------------------------------------
Tue May 6 11:33:52 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Convert YaST-specific keymap identifiers (gh#agama-project/agama#1902).
-------------------------------------------------------------------
Wed Apr 30 08:18:27 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Convert relurl:// URLs in AutoYaST files and scripts definitions
(gh#agama-project/agama#2305).
-------------------------------------------------------------------
Fri Apr 25 13:36:13 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- AutoYaST profile compatibility: <reg_server_cert_fingerprint />
and <reg_server_cert_fingerprint_type /> (related to
gh#agama-project/agama#2270).
-------------------------------------------------------------------
Thu Apr 24 17:18:04 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Copy only the NetworkManager connnections from /etc and just
in case the copy has not been disabled
(gh#agama-project/agama#2291).
-------------------------------------------------------------------
Thu Apr 24 14:10:46 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Allow to specify SSL certificate fingerprint to handle self-signed
certificates used for non default registration server
- Allow to specify registration server URL via API
gh#agama-project/agama#2270
-------------------------------------------------------------------
Tue Apr 22 14:14:52 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 14
-------------------------------------------------------------------
Tue Apr 15 08:50:10 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Fixed detection of iBFT (bsc#1239046).
- Removed offload_card from iSCSI (bsc#1231385).
-------------------------------------------------------------------
Fri Apr 11 09:07:22 UTC 2025 - Michal Filka <mfilka@suse.com>
- bsc#1238038
- copy NVMe configuration files from inst-sys to target
(gh#agama-project/agama#2257).
-------------------------------------------------------------------
Thu Apr 10 20:26:29 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Allow to specify extra kernel parameters for bootloader
(jsc#PED-10810)
-------------------------------------------------------------------
Wed Apr 9 06:52:58 UTC 2025 - José Iván López González <jlopez@suse.com>
- Add auto-installation support for iSCSI
(gh#agama-project/agama#2231).
-------------------------------------------------------------------
Wed Apr 9 06:42:38 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Write the registration URL to the installed system (bsc#1239316).
-------------------------------------------------------------------
Tue Apr 1 12:44:57 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Make the extension version attribute optional, search the version
automatically if it is missing (related to jsc#AGM-100)
-------------------------------------------------------------------
Fri Mar 28 21:45:56 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Allow to specify bootloader timeout in profile (jsc#PED-10810)
-------------------------------------------------------------------
Fri Mar 28 19:22:51 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Copy the hostname to the installed system if it exists
(gh#agama-project/agama#2226).
-------------------------------------------------------------------
Fri Mar 28 11:13:48 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Properly map AutoYaST scripts "source" to "content"
(gh#agama-project/agama#2224).
-------------------------------------------------------------------
Thu Mar 28 09:30:29 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Always display the patterns from extensions (related to
jsc#AGM-100)
-------------------------------------------------------------------
Thu Mar 27 12:40:02 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 13
-------------------------------------------------------------------
Thu Mar 27 11:40:23 UTC 2025 - José Iván López González <jlopez@suse.com>
- Extend storage model for basic LVM support
(gh#agama-project/agama#2216).
-------------------------------------------------------------------
Tue Mar 25 15:47:13 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Install registred addon product (its *-release package)
(related to jsc#AGM-100)
-------------------------------------------------------------------
Tue Mar 25 12:11:35 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Support for autoyast manual files deployment with exception
of deploying directories and files_script
(gh#agama-project/agama#2121)
-------------------------------------------------------------------
Fri Mar 21 16:36:03 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Add extensions from the registration server (automatic
installation only) (jsc#AGM-100)
-------------------------------------------------------------------
Thu Mar 20 08:41:23 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Symlink the /mnt/etc/resolv.conf to the NetworkManager running
one in order to have DNS resolution in the chroot post scripts
(bsc#1235617, gh#agama-project/agama#2179).
-------------------------------------------------------------------
Fri Mar 14 12:34:03 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Import the packages list from an AutoYaST profile
(gh#agama-project/agama#2153).
-------------------------------------------------------------------
Wed Mar 12 00:44:33 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Copy Agama logs to the installed system (gh#agama/agama-project#2148).
- Set /var/log/agama-installation permissions to 0700
(gh#agama-project/agama#2140).
-------------------------------------------------------------------
Wed Mar 5 14:50:04 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Automatically retry package download or repository refresh
before reporting an error (gh#agama-project/agama#2117)
-------------------------------------------------------------------
Wed Mar 5 11:33:39 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Use the correcty script type allows postPartitioning scripts to run
(gh#agama-project/agama#2114).
-------------------------------------------------------------------
Wed Mar 5 09:21:03 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Enable again the signature checking for dir:/// repositories
(gh#agama-project/agama#2092).
-------------------------------------------------------------------
Wed Mar 5 08:09:28 UTC 2025 - Michal Filka <mfilka@suse.com>
- introduced boot_strategy into storage section of product
definition yaml file. It allows to control what boot strategy
will be proposed by storage. Currently works only for BLS.
-------------------------------------------------------------------
Fri Feb 28 13:03:11 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Temporarily disable signature checking for dir:// repositories
(gh#agama-project/agama#2092).
-------------------------------------------------------------------
Wed Feb 26 06:52:45 UTC 2025 - José Iván López González <jlopez@suse.com>
- Add file system label to the config model (needed for jsc#AGM-122
and bsc#1237165).
-------------------------------------------------------------------
Wed Feb 26 06:51:36 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 12
-------------------------------------------------------------------
Tue Feb 25 23:48:46 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Enable agama-scripts service if installed (gh#agama-project/agama#2077).
-------------------------------------------------------------------
Mon Feb 24 12:03:58 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Temporarily hide the abort installation option in the package
installation failure question until the failed state is properly
handled. (related to gh#agama-project/agama#2049)
-------------------------------------------------------------------
Mon Feb 24 07:41:17 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Adjust default encryption settings to better support TPM-based
unlocking (gh#agama-project/agama#2053).
-------------------------------------------------------------------
Fri Feb 21 13:59:30 UTC 2025 - José Iván López González <jlopez@suse.com>
- Initial support for global encryption in the storage model
(gh#agama-project/agama#2031).
-------------------------------------------------------------------
Thu Feb 20 17:22:09 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add libzypp callbacks to handle more checksum and signatures
problems (gh#agama-project/agama#2030).
-------------------------------------------------------------------
Thu Feb 20 14:23:49 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Fixed a bug in the storage model conversion that was causing some
partition sizes to be reset (gh#openSUSE/agama#2036).
-------------------------------------------------------------------
Thu Feb 20 12:56:13 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Introduce the storage model to support the new storage user
interface (gh#openSUSE/agama#2033)
-------------------------------------------------------------------
Wed Feb 19 17:54:19 UTC 2025 - Michal Filka <mfilka@suse.com>
- Instead of "agama." use more generic "inst." prefix for kernel
boot options controling the agama installer
-------------------------------------------------------------------
Wed Feb 19 14:21:40 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- if root ssh key is used, ensure that sshd is enabled and firewall
has port open (jsc#PM-2128)
- root password is explicitelly locked if not specified
- first user will be in wheel group (jsc#PM-2128)
-------------------------------------------------------------------
Wed Feb 19 13:35:07 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- UX: Improve the libzypp callbacks (gh#agama-project/agama#1985)
-------------------------------------------------------------------
Tue Feb 18 17:19:08 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- (gh#agama-project/agama#1970).
- In an unattended installation, the system will reboot
automatically.
- The D-Bus method to finish the installation will not reboot the
system if it is not in the "finish" installation phase.
-------------------------------------------------------------------
Tue Feb 18 12:03:02 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Expose root and first user passwords (gh#agama-project/agama#2005).
- Use a single D-Bus property for the root user data.
- Remove support for auto-login.
-------------------------------------------------------------------
Tue Feb 18 11:27:04 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Implement basic support for RMT/SCC proxies (gh#agama-project/agama#2007).
-------------------------------------------------------------------
Mon Feb 17 09:17:47 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add support for post-partitioning scripts (jsc#AGM-108).
-------------------------------------------------------------------
Thu Feb 13 21:37:32 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix several AutoYaST conversion problems (gh#agama-project/agama#1995):
- Fix handling of scripts file names and location
(gh#agama-project/agama#1903).
- Fix the name of the localization section (gh#agama-project/agama#1960).
- Use a more readable JSON format (gh#agama-project/agama#1907).
-------------------------------------------------------------------
Wed Feb 12 08:16:38 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Report unsupported AutoYaST elements
(gh#agama-project/agama#1976).
-------------------------------------------------------------------
Tue Feb 11 15:11:18 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Fixed possible double timeout when refreshing the installation
repository (bsc#1236820)
-------------------------------------------------------------------
Fri Feb 7 16:29:28 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Report problems when trying to download a package, install it
or run a script (gh#agama/agama-project#1932).
-------------------------------------------------------------------
Fri Feb 7 16:16:14 UTC 2025 - José Iván López González <jlopez@suse.com>
- Adapt tests to use the BLS size requirements
(gh#agama-project/agama#1979).
-------------------------------------------------------------------
Wed Feb 5 14:32:29 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Disable the local media in the installed system, esp. the
offline repository with URL dir:///run/initramfs/live/install
(bsc#1236813)
-------------------------------------------------------------------
Wed Jan 29 16:28:32 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Allow reading repository in /install directory on iso
(jsc#PED-10405)
-------------------------------------------------------------------
Fri Jan 24 09:33:27 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Introduce a new installation phase "finish"
(gh#agama-project/agama#1616).
-------------------------------------------------------------------
Fri Jan 24 06:42:00 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Use the availability of the base product to determine whether a
product requires to be registered (gh#agama-project/agama#1938).
-------------------------------------------------------------------
Tue Jan 21 19:11:04 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix the ListRepositories D-Bus method to return the proper value
instead of crashing the service (gh#agama-project/agama#1930).
-------------------------------------------------------------------
Mon Jan 20 16:44:45 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- The software service provides DBus API for reading the currently
configured repositories, related to (gh#agama-project/agama#1894)
-------------------------------------------------------------------
Mon Jan 20 10:35:35 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add support for specifying a license for each product
(jsc#PED-11987).
-------------------------------------------------------------------
Fri Jan 17 20:42:58 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Relax gems version in the gemspec file
(gh#agama-project/agama#1917)
-------------------------------------------------------------------
Thu Jan 16 17:30:03 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Correctly select the base product to install (bsc#1235931)
-------------------------------------------------------------------
Wed Jan 15 14:26:11 UTC 2025 - José Iván López González <jlopez@suse.com>
- Add missing gems to the gemspec file
(gh#agama-project/agama#1899).
-------------------------------------------------------------------
Fri Jan 10 21:22:00 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 11
-------------------------------------------------------------------
Fri Jan 10 15:44:30 UTC 2025 - José Iván López González <jlopez@suse.com>
- Objects from the D-Bus trees representing the storage devices are
removed before performing the probing. It prevents a segmentation
fault by accessing to old objects (gh#agama-project/agama#1884).
-------------------------------------------------------------------
Thu Jan 9 12:21:40 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Activate multipath in case it is forced by the user
(gh#agama-project/agama#1875).
-------------------------------------------------------------------
Wed Jan 8 14:05:53 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add support for products registration (jsc#PED-11192,
gh#agama-project/agama#1809).
-------------------------------------------------------------------
Mon Dec 23 18:40:01 UTC 2024 - Josef Reidinger <jreidinger@suse.com>
- Fix collision between hotfix and new bootlaoder dbus interface
(gh#agama-project/agama#1852)
-------------------------------------------------------------------
Fri Dec 20 15:05:11 UTC 2024 - José Iván López González <jlopez@suse.com>
- Hotfix to avoid losing the storage config with auto installation
(bsc#1234711).
-------------------------------------------------------------------
Fri Dec 20 12:18:56 UTC 2024 - Josef Reidinger <jreidinger@suse.com>
- Add bootloader dbus interface to allow to set if bootloader
should stop on boot menu (gh#agama-project/agama#1840)