forked from rhinstaller/anaconda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
anaconda.spec.in
8328 lines (7919 loc) · 433 KB
/
anaconda.spec.in
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
Summary: Graphical system installer
Name: anaconda
Version: @PACKAGE_VERSION@
Release: @PACKAGE_RELEASE@%{?dist}
License: GPLv2+ and MIT
URL: http://fedoraproject.org/wiki/Anaconda
# To generate Source0 do:
# git clone https://github.com/rhinstaller/anaconda
# git checkout -b archive-branch anaconda-%%{version}-%%{release}
# ./autogen.sh
# make dist
Source0: https://github.com/rhinstaller/%{name}/releases/download/%{name}-%{version}-1/%{name}-%{version}.tar.bz2
# Versions of required components (done so we make sure the buildrequires
# match the requires versions of things).
%if ! 0%{?rhel}
%bcond_without live
%define blivetguiver 2.1.12-1
%else
%bcond_with live
%endif
%define cockpitver 275
%define dasbusver 1.3
%define dbusver 1.2.3
%define dnfver 3.6.0
%define dracutver 034-7
%define fcoeutilsver 1.0.12-3.20100323git
%define gettextver 0.19.8
%define gtk3ver 3.22.17
%define helpver 26.2-1
%define isomd5sumver 1.0.10
%define langtablever 0.0.60
%define libarchivever 3.0.4
%define libblockdevver 2.1
%define libreportanacondaver 2.0.21-1
%define libtimezonemapver 0.4.1-2
%define libxklavierver 5.4
%define mehver 0.23-1
%define nmver 1.0
%define pykickstartver 3.47-1
%define pypartedver 2.5-2
%define pythonblivetver 1:3.6.0-1
%define rpmver 4.15.0
%define simplelinever 1.9.0-1
%define subscriptionmanagerver 1.26
%define utillinuxver 2.15.1
%define rpmostreever 2023.2
BuildRequires: libtool
BuildRequires: gettext-devel >= %{gettextver}
BuildRequires: gtk3-devel >= %{gtk3ver}
BuildRequires: gtk-doc
BuildRequires: gtk3-devel-docs >= %{gtk3ver}
BuildRequires: glib2-doc
BuildRequires: gobject-introspection-devel
BuildRequires: glade-devel
BuildRequires: libgnomekbd-devel
BuildRequires: libxklavier-devel >= %{libxklavierver}
BuildRequires: make
BuildRequires: pango-devel
BuildRequires: python3-devel
BuildRequires: systemd
# rpm and libarchive are needed for driver disk handling
BuildRequires: rpm-devel >= %{rpmver}
BuildRequires: libarchive-devel >= %{libarchivever}
%ifarch s390 s390x
BuildRequires: s390utils-devel
%endif
BuildRequires: libtimezonemap-devel >= %{libtimezonemapver}
# Tools used by the widgets resource bundle generation
BuildRequires: gdk-pixbuf2-devel
BuildRequires: libxml2
Requires: anaconda-gui = %{version}-%{release}
Requires: anaconda-tui = %{version}-%{release}
%description
The anaconda package is a metapackage for the Anaconda installer.
%package core
Summary: Core of the Anaconda installer
Requires: python3-libs
Requires: python3-dnf >= %{dnfver}
Requires: python3-blivet >= %{pythonblivetver}
Requires: python3-blockdev >= %{libblockdevver}
Requires: python3-meh >= %{mehver}
Requires: libreport-anaconda >= %{libreportanacondaver}
Requires: libselinux-python3
Requires: python3-rpm >= %{rpmver}
Requires: python3-pyparted >= %{pypartedver}
Requires: python3-requests
Requires: python3-requests-file
Requires: python3-requests-ftp
Requires: python3-kickstart >= %{pykickstartver}
Requires: python3-langtable >= %{langtablever}
Requires: util-linux >= %{utillinuxver}
Requires: python3-gobject-base
Requires: python3-pwquality
Requires: python3-systemd
Requires: python3-productmd
Requires: python3-dasbus >= %{dasbusver}
Requires: flatpak-libs
%if %{defined rhel} && %{undefined centos}
Requires: subscription-manager >= %{subscriptionmanagerver}
%endif
# pwquality only "recommends" the dictionaries it needs to do anything useful,
# which is apparently great for containers but unhelpful for the rest of us
Requires: cracklib-dicts
Requires: teamd
%ifarch s390 s390x
Requires: openssh
%endif
Requires: NetworkManager >= %{nmver}
Requires: NetworkManager-libnm >= %{nmver}
Requires: NetworkManager-team
Requires: kbd
Requires: chrony
Requires: systemd
Requires: systemd-resolved
Requires: python3-pid
# Required by the systemd service anaconda-fips.
Requires: crypto-policies
Requires: /usr/bin/update-crypto-policies
# required because of the rescue mode and VNC question
Requires: anaconda-tui = %{version}-%{release}
# Make sure we get the en locale one way or another
Requires: (glibc-langpack-en or glibc-all-langpacks)
# anaconda literally runs its own dbus-daemon, so it needs this,
# even though the distro default is dbus-broker in F30+
Requires: dbus-daemon
# setting time from time spoke
Requires: /usr/bin/date
# Ensure it's not possible for a version of grubby to be installed
# that doesn't work with btrfs subvolumes correctly...
Conflicts: grubby < 8.40-10
Obsoletes: anaconda-images <= 10
Provides: anaconda-images = %{version}-%{release}
Obsoletes: anaconda-runtime < %{version}-%{release}
Provides: anaconda-runtime = %{version}-%{release}
Obsoletes: booty <= 0.107-1
%description core
The anaconda-core package contains the program which was used to install your
system.
%if %{with live}
# do not provide the live subpackage on RHEL
%package live
Summary: Live installation specific files and dependencies
BuildRequires: desktop-file-utils
# live installation currently implies a graphical installation
Requires: anaconda-gui = %{version}-%{release}
Requires: usermode
Requires: zenity
Requires: xisxwayland
Recommends: xhost
%description live
The anaconda-live package contains scripts, data and dependencies required
for live installations.
%endif
%package install-env-deps
Summary: Installation environment specific dependencies
Requires: udisks2-iscsi
Requires: libblockdev-plugins-all >= %{libblockdevver}
%if ! 0%{?rhel}
Requires: libblockdev-lvm-dbus
%endif
# active directory/freeipa join support
Requires: realmd
Requires: isomd5sum >= %{isomd5sumver}
%ifarch %{ix86} x86_64
Recommends: fcoe-utils >= %{fcoeutilsver}
%endif
# likely HFS+ resize support
%ifarch %{ix86} x86_64
%if ! 0%{?rhel}
Requires: hfsplus-tools
%endif
%endif
# kexec support except riscv64
%ifnarch riscv64
Requires: kexec-tools
%endif
# run's on TTY1 in install env
Requires: tmux
# install time crash handling
Requires: gdb
# support for installation from image and live & live image installations
Requires: rsync
%description install-env-deps
The anaconda-install-env-deps metapackage lists all installation environment dependencies.
This makes it possible for packages (such as Initial Setup) to depend on the main Anaconda package without
pulling in all the install time dependencies as well.
%package install-img-deps
Summary: Installation image specific dependencies
# This package must have no weak dependencies.
# Pull in most stuff with the -env- metapackage
Requires: anaconda-install-env-deps = %{version}-%{release}
# Require storage things that are only recommended in -env-
%ifarch %{ix86} x86_64
Requires: fcoe-utils >= %{fcoeutilsver}
%endif
# only WeakRequires elsewhere and not guaranteed to be present
Requires: device-mapper-multipath
%if ! 0%{?rhel}
Requires: zram-generator-defaults
%else
Requires: zram-generator
%endif
# needed for proper driver disk support - if RPMs must be installed, a repo is needed
Requires: createrepo_c
# Display stuff moved from lorax templates
Requires: xorg-x11-drivers
Requires: xorg-x11-server-Xorg
Requires: xrandr
Requires: xrdb
Requires: dbus-x11
Requires: gsettings-desktop-schemas
Requires: nm-connection-editor
Requires: librsvg2
Requires: gnome-kiosk
Requires: brltty
# dependencies for rpm-ostree payload module
Requires: rpm-ostree >= %{rpmostreever}
Requires: ostree
# used by ostree command for native containers
Requires: skopeo
%description install-img-deps
The anaconda-install-img-deps metapackage lists all boot.iso installation image dependencies.
Add this package to an image build (eg. with lorax) to ensure all Anaconda capabilities are supported in the resulting image.
%package webui
Summary: Cockpit based user interface for the Anaconda installer
Requires: cockpit-bridge >= %{cockpitver}
Requires: cockpit-ws >= %{cockpitver}
# WebKit dependency needs to be specified there as cockpit web-view does not have a hard dependency on webkit as
# it can normally fall back to a regular browser. This does not work in the limited installer
# environment, so we need to make sure the WebKit API is available.
Requires: webkit2gtk4.1
%description webui
This package contains Cockpit based user interface for the Anaconda installer.
%package gui
Summary: Graphical user interface for the Anaconda installer
Requires: anaconda-core = %{version}-%{release}
Requires: anaconda-widgets = %{version}-%{release}
Requires: python3-meh-gui >= %{mehver}
Requires: adwaita-icon-theme
Requires: tigervnc-server-minimal
Requires: libxklavier >= %{libxklavierver}
Requires: libgnomekbd
Requires: libtimezonemap >= %{libtimezonemapver}
Requires: nm-connection-editor
Requires: keybinder3
%ifnarch s390 s390x
Requires: NetworkManager-wifi
%endif
Requires: anaconda-user-help >= %{helpver}
Requires: yelp
%if ! 0%{?rhel}
Requires: blivet-gui-runtime >= %{blivetguiver}
%endif
Requires: system-logos
# Needed to compile the gsettings files
BuildRequires: gsettings-desktop-schemas
%description gui
This package contains graphical user interface for the Anaconda installer.
%package tui
Summary: Textual user interface for the Anaconda installer
Requires: anaconda-core = %{version}-%{release}
Requires: python3-simpleline >= %{simplelinever}
%description tui
This package contains textual user interface for the Anaconda installer.
%package widgets
Summary: A set of custom GTK+ widgets for use with anaconda
Requires: %{__python3}
%description widgets
This package contains a set of custom GTK+ widgets used by the anaconda installer.
%package widgets-devel
Summary: Development files for anaconda-widgets
Requires: glade
Requires: %{name}-widgets%{?_isa} = %{version}-%{release}
%description widgets-devel
This package contains libraries and header files needed for writing the anaconda
installer. It also contains Python and Glade support files, as well as
documentation for working with this library.
%package dracut
Summary: The anaconda dracut module
Requires: dracut >= %{dracutver}
Requires: dracut-network
Requires: dracut-live
Requires: xz
Requires: python3-kickstart
%description dracut
The 'anaconda' dracut module handles installer-specific boot tasks and
options. This includes driver disks, kickstarts, and finding the anaconda
runtime on NFS/HTTP/FTP servers or local disks.
%prep
%autosetup -p 1
%build
# use actual build-time release number, not tarball creation time release number
%configure ANACONDA_RELEASE=%{release}
%{__make} %{?_smp_mflags}
%install
%{make_install}
find %{buildroot} -type f -name "*.la" | xargs %{__rm}
# Create an empty directory for addons
mkdir %{buildroot}%{_datadir}/anaconda/addons
# Create an empty directory for post-scripts
mkdir %{buildroot}%{_datadir}/anaconda/post-scripts
%if %{with live}
# required for live installations
desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_datadir}/applications/liveinst.desktop
%else
# Remove all live-installer files from the buildroot
rm -rf \
%{buildroot}/%{_sysconfdir}/pam.d/liveinst \
%{buildroot}/%{_sysconfdir}/security/console.apps/liveinst \
%{buildroot}/%{_sysconfdir}/xdg/autostart/liveinst-setup.desktop \
%{buildroot}/%{_bindir}/liveinst \
%{buildroot}/%{_libexecdir}/liveinst-setup.sh \
%{buildroot}/%{_sbindir}/liveinst \
%{buildroot}/%{_datadir}/anaconda/gnome \
%{buildroot}/%{_datadir}/anaconda/gnome/fedora-welcome \
%{buildroot}/%{_datadir}/anaconda/gnome/org.fedoraproject.welcome-screen.desktop \
%{buildroot}/%{_datadir}/applications/liveinst.desktop
%endif
# Add localization files
%find_lang %{name}
# main package and install-env-deps are metapackages
%files
%files install-env-deps
# Allow the lang file to be empty
%define _empty_manifest_terminate_build 0
%files install-img-deps
# Allow the lang file to be empty here too
%define _empty_manifest_terminate_build 0
%files core -f %{name}.lang
%license COPYING
%{_unitdir}/*
%{_prefix}/lib/systemd/system-generators/*
%{_bindir}/instperf
%{_bindir}/anaconda-disable-nm-ibft-plugin
%{_bindir}/anaconda-nm-disable-autocons
%{_sbindir}/anaconda
%{_sbindir}/handle-sshpw
%{_datadir}/anaconda
%{_prefix}/libexec/anaconda
%exclude %{_datadir}/anaconda/gnome
%exclude %{_datadir}/anaconda/pixmaps
%exclude %{_datadir}/anaconda/ui
%exclude %{_datadir}/anaconda/window-manager
%exclude %{_datadir}/anaconda/anaconda-gtk.css
%dir %{_datadir}/anaconda/post-scripts
%exclude %{_prefix}/libexec/anaconda/dd_*
%{python3_sitearch}/pyanaconda
%exclude %{python3_sitearch}/pyanaconda/rescue.py*
%exclude %{python3_sitearch}/pyanaconda/__pycache__/rescue.*
%exclude %{python3_sitearch}/pyanaconda/ui/gui/*
%exclude %{python3_sitearch}/pyanaconda/ui/tui/*
%{_bindir}/anaconda-cleanup
%dir %{_sysconfdir}/%{name}
%config %{_sysconfdir}/%{name}/*
%dir %{_sysconfdir}/%{name}/conf.d
%config %{_sysconfdir}/%{name}/conf.d/*
%dir %{_sysconfdir}/%{name}/profile.d
%config %{_sysconfdir}/%{name}/profile.d/*
%if %{with live}
# do not provide the live subpackage on RHEL
%files live
%{_bindir}/liveinst
%{_sbindir}/liveinst
%config(noreplace) %{_sysconfdir}/pam.d/*
%config(noreplace) %{_sysconfdir}/security/console.apps/*
%{_libexecdir}/liveinst-setup.sh
%{_datadir}/applications/*.desktop
%{_datadir}/anaconda/gnome
%{_sysconfdir}/xdg/autostart/*.desktop
%endif
%files webui
%dir %{_datadir}/cockpit/anaconda-webui
%{_datadir}/cockpit/anaconda-webui/index.js.LICENSE.txt.gz
%{_datadir}/cockpit/anaconda-webui/index.html.gz
%{_datadir}/cockpit/anaconda-webui/index.js.gz
%{_datadir}/cockpit/anaconda-webui/index.css.gz
%{_datadir}/cockpit/anaconda-webui/manifest.json
%{_datadir}/metainfo/org.cockpit-project.anaconda-webui.metainfo.xml
%{_datadir}/cockpit/anaconda-webui/po.*.js.gz
%files gui
%{python3_sitearch}/pyanaconda/ui/gui/*
%{_datadir}/anaconda/pixmaps
%{_datadir}/anaconda/ui
%if 0%{?rhel}
# Remove blivet-gui
%exclude %{_datadir}/anaconda/ui/spokes/blivet_gui.*
%exclude %{python3_sitearch}/pyanaconda/ui/gui/spokes/blivet_gui.*
%endif
%{_datadir}/anaconda/window-manager
%{_datadir}/anaconda/anaconda-gtk.css
%files tui
%{python3_sitearch}/pyanaconda/rescue.py
%{python3_sitearch}/pyanaconda/__pycache__/rescue.*
%{python3_sitearch}/pyanaconda/ui/tui/*
%files widgets
%{_libdir}/libAnacondaWidgets.so.*
%{_libdir}/girepository*/AnacondaWidgets*typelib
%{python3_sitearch}/gi/overrides/*
%files widgets-devel
%{_libdir}/libAnacondaWidgets.so
%{_libdir}/glade/modules/libAnacondaWidgets.so
%{_includedir}/*
%{_datadir}/glade/catalogs/AnacondaWidgets.xml
%{_datadir}/gtk-doc
%files dracut
%dir %{_prefix}/lib/dracut/modules.d/80%{name}
%{_prefix}/lib/dracut/modules.d/80%{name}/*
%{_prefix}/libexec/anaconda/dd_*
%changelog
* Tue Apr 18 2023 github-actions <[email protected]> - 39.11-1
- Add missing documentation about OEMDRV (#2171811) (jkonecny)
- gui: Simplify invalid timezone handling. (vslavik)
- Try to set timezone from language on welcome spoke (vslavik)
- Revert "Remove the function get_locale_timezones" (vslavik)
- Always set timezone with priority (vslavik)
- Add timezone priority to module backend and interface (vslavik)
- Fix logging to packaging.log (vponcova)
- exception: only attach existent and non-empty files (#2185827) (awilliam)
- WebUI: force symlink re-creation (jvanderwaa)
- Don't set the __doc__ attribute (vponcova)
- Remove the DeviceSetupError exception (vponcova)
- Remove SetupDevice and TeardownDevice from DeviceTreeHandlerInterface
(vponcova)
- Remove unused constants (vponcova)
- Remove the DNFManager.remove_repository method (vponcova)
- Remove the DNFManager.reset_substitution method (vponcova)
- Remove the DNFManager.is_environment_valid method (vponcova)
- Remove resolve_device from pyanaconda.payload.utils (vponcova)
- Remove the TreeInfoMetadata._root_url attribute (vponcova)
- po: fix (jvanderwaa)
- WebUI: don't set step in React state (jvanderwaa)
- WebUI: avoid relying on automated semicolon insertion (jvanderwaa)
- .github: add codeql workflow for JavaScript (jvanderwaa)
- WebUI: correct setState calls for SearchInput (jvanderwaa)
* Tue Apr 11 2023 github-actions <[email protected]> - 39.10-1
- webui: update reference images (kkoukiou)
- webui: update CockpitPoWebpackPlugin and adjust configuration options
(kkoukiou)
- webui: update run-tests script (kkoukiou)
- webui: build: Move to a webpack module (kkoukiou)
- webui: modernize the makefile (kkoukiou)
- webui: update integration tests for v1 of autopartitioning (rvykydal)
- Fix wrong dracut timeout message (jkonecny)
- Run webui-periodic workflow on a testing runner for some time (rvykydal)
- Add GH workflow for periodic webui integration tests in Permian (rvykydal)
- webui: update pixeltest reference (rvykydal)
- webui: update microcopy plurals to remove "(s)" suffixes (rvykydal)
- webui: add pixel tests for the new storage config screens (rvykydal)
- webui: add test for autopartitioning (rvykydal)
- webui: test that disk selection persists Next and Back (INSTALLER-3029)
(rvykydal)
- webui: make not enough space warning in detail a phrase (rvykydal)
- webui: add content for autopartitioning options details (rvykydal)
- webui: allow weak passwords for disk encryption (rvykydal)
- webui: fix tests for split Installation Destination step (rvykydal)
- webui: add TODO for applyPartitioning (rvykydal)
- webui: move some subcomponents out of components (rvykydal)
- webui: implement Disk Encryption subscreens in scope of the single substep
(rvykydal)
- webui: log exception in case of partitioning application error (rvykydal)
- webui: keep disk selection in the UI when going back (rvykydal)
- webui: add a tooltip hint to disabled autopartitioning scenarios (rvykydal)
- webui: connect Storage Configuration to backend initalization mode (rvykydal)
- webui: implement Storage Configuration (guided partitioning) (rvykydal)
- webui: move storage validation to the last storage substep (rvykydal)
- webui: add Disk Encryption subscreen skeleton (rvykydal)
- webui: add Storage Configuration subscreen skeleton (rvykydal)
- webui: move disk selection into a wizard substep (rvykydal)
- Move the validation report to the payload manager (vponcova)
- Use the DNF module in TUI and GUI (vponcova)
- Extend the DNF module (vponcova)
- Handle an undefined release version (vponcova)
- Move the generate_treeinfo_repository function (vponcova)
- Create the check_instances function for unit tests (vponcova)
- oemdrv: wait up to 5 seconds for disks to be handled (rmetrich)
* Tue Apr 04 2023 github-actions <[email protected]> - 39.9-1
- fsset: Catch SwapSpaceError when trying to activate swaps (vtrefny)
- Add tests for threads (vslavik)
- Add and use thread_manager.add_thread() (vslavik)
- Use the simplified HDD source in the UI (vponcova)
- Simplify the HDD source (vponcova)
- Add the create_hdd_url function (vponcova)
- Move thread tests according to renaming (vslavik)
- Compatibility layer for threading->core.threads (vslavik)
- Rename core module threading to threads (vslavik)
- Move threading from pyanaconda to pyanaconda.core (vslavik)
- Rename threadMgr to thread_manager (vslavik)
- Allow showing proxy passwords on the installation source spoke (jstodola)
- Allow showing passwords on the subscription spoke (jstodola)
- Always hide the user password by default (jstodola)
- Always hide the root password by default (jstodola)
* Tue Mar 28 2023 github-actions <[email protected]> - 39.8-1
- Move ostreecontainer deps to install-img-deps (jkonecny)
- Add 'vga' to the list of preserved kernel arguments (#2176782) (awilliam)
- Improve documentation of our Cockpit CI tests (jkonecny)
- Download cockpit rpms during build (jkonecny)
- Add --strict mode to makeupdates script (jkonecny)
- docs: Document the `autopart --nohome` issue (vponcova)
- Remove a react-core tarball (mkolman)
- WebUI tweak local test execution (jkonecny)
- Add missing deps to install_dependencies.sh (jkonecny)
- WebUI: do not force to manually remove updates.img (jkonecny)
* Tue Mar 28 2023 github-actions <[email protected]> - 39.7-1
- Remove the SourceFactory class from the pyanaconda.payload module (vponcova)
- Simplify creation of a source based on its URL (vponcova)
- Protect the specified devices with all their ancestors (vponcova)
- Protect HDD sources from the Payloads module (vponcova)
- Use the simplified NFS source in the UI (vponcova)
- Simplify the NFS source (vponcova)
- Improve access to the repository configuration of a source (vponcova)
- Protect the stage2 device from the Storage module (vponcova)
- Don't protect unavailable devices (vponcova)
- Update pixel tests for a new cockpit-ws (jkonecny)
- webui: update links for downloading cockpit-ws and cockpit-bridge RPMs
(kkoukiou)
- Don't parse additional repositories during start-up (vponcova)
- Implement needs_network for rpm_ostree_container (#2125655) (jkonecny)
- Move rpm-ostree deps from Lorax to Anaconda (#2125655) (jkonecny)
- Deduplicate test data creation func in rpm ostree (jkonecny)
- Add release note for ostreecontainer (#2125655) (jkonecny)
- Add new OSTree container source test (#2125655) (jkonecny)
- Enable RPM OSTree from container source in payload (#2125655) (jkonecny)
- Add RPM OSTree source from container (#2125655) (jkonecny)
- WebUI: Fix keyboard navigation on welcome screen (ozobal)
- Add test step logging and screenshots to WebUI tests (zveleba)
- Ignore newly found pylint detections (vslavik)
- Fix network configuration from kickstart in intramfs (rvykydal)
* Tue Mar 21 2023 github-actions <[email protected]> - 39.6-1
- Adjust to pykickstart moving new network commands to F39 (awilliam)
- Generate the ostreesetup kickstart command (vponcova)
- Simplify the URL source (vponcova)
- Add support for sources that provide access to a repository (vponcova)
- Protect the RPM source provided by Dracut (vponcova)
- Show the RPM source provided by Dracut in GUI (jkonecny)
- Rename widgets for auto-detected installation media (vponcova)
- Drop the stage2 support from the CDROM source (vponcova)
- Simplify the default source selection of the RPM sources (jkonecny)
- Add support for an RPM source defined by a local path to a repository
(jkonecny)
- webui: add hint for running tests locally with selinux failures (rvykydal)
- For user unit tests, provide valid login.defs (vslavik)
- Don't copy binaries in user unit tests (vslavik)
- Don't create empty login.defs (vslavik)
- Revert "infra: Disable failing tests that call useradd and groupadd"
(vslavik)
- Set correctly NM props for DNS kickstart options (vslavik)
- fedora-welcome: Default to light style (fmuellner)
- fedora-welcome: Swap buttons (fmuellner)
- fedora-welcome: Drop icons from buttons (fmuellner)
- fedora-welcome: Use libadwaita (fmuellner)
- fedora-welcome: Use actions instead of clicked callbacks (fmuellner)
- fedora-welcome: Port to GTK4 (fmuellner)
- fedora-welcome: Tweak button labels (fmuellner)
- fedora-welcome: Adjust wording of description (fmuellner)
- fedora-welcome: Rename .desktop file (fmuellner)
- fedora-welcome: Add back app icon (fmuellner)
- fedora-welcome: Replace grids with boxes (fmuellner)
- fedora-welcome: Remove secondary screen (fmuellner)
- fedora-welcome: Launch .desktop file instead of spawning command (fmuellner)
- fedora-welcome: Fix passing command line flags (fmuellner)
- fedora-welcome: Use standard Javascript modules (fmuellner)
- fedora-welcome: Split out application subclass (fmuellner)
- fedora-window: Use show_all() only internally (fmuellner)
- fedora-welcome: Stop using deprecated Lang module (fmuellner)
- fedora-welcome: Reindent WelcomeWindow class (fmuellner)
- fedora-welcome: Use consistent quotes (fmuellner)
- fedora-welcome: Use template strings (fmuellner)
- fedora-welcome: Use consistent braces (fmuellner)
- fedora-welcome: Remove unused imports (fmuellner)
- Fix saving DNS search domains to kickstart (vslavik)
* Tue Mar 14 2023 github-actions <[email protected]> - 39.5-1
- Revert "Enable TFTP support (#2071350)" (vslavik)
- CONTRIBUTING: Add note about systemd-boot (jeremy.linton)
- release-notes: Document that its possible to install with systemd-boot
(jeremy.linton)
- Add kickstart/command line control to enable systemd-boot (jeremy.linton)
- add x86 systemd-boot option (jeremy.linton)
- Add the grub packages removed from comps to grub installs (jeremy.linton)
- Add EFISYSTEMD class and enable aarch64 (jeremy.linton)
- Hoist firmware bit size check (jeremy.linton)
- storage: Add a systemd class for systemd-boot (jeremy.linton)
- bootloader/base.py drop stage2 requirement (jeremy.linton)
- Retranslate welcome screen more simply (vslavik)
- Clean up ISO option in source selection spoke (ozobal)
- Clean up strings in payload tasks (vponcova)
- Clean up tasks for setting up and tearing down sources (vponcova)
- Enable TFTP support (#2071350) (Inperpetuammemoriam)
* Tue Mar 07 2023 github-actions <[email protected]> - 39.4-1
- Verify repomd hashes with a task (vponcova)
- WebUI: Give "Quit" button correct margin (ozobal)
- Remove the tx_id functionality (vponcova)
- Don't generate a repository name of the URL source (vponcova)
- Fix translations of the pre-release warning dialog (#2165762) (vponcova)
- Validate the CDN source early (vponcova)
- Add the ValidatePackagesSelectionWithTask DBus method (vponcova)
- Remove the get_base_repo_url method of the TreeInfoMetadata class (vponcova)
- Load treeinfo metadata with the LoadTreeInfoMetadataTask task (vponcova)
- Allow to get the base and root treeinfo repositories (vponcova)
- Create the generate_treeinfo_repository function (vponcova)
- Create the update_treeinfo_repositories function (vponcova)
- password tooltip text adapt language (iasunsea)
* Tue Feb 28 2023 github-actions <[email protected]> - 39.3-1
- Add config for Fedora Designsuite (luya)
- docs: Update contrib guide for current branching (vslavik)
- efi: deal with verbose by default output from efibootmgr (marmarek)
* Tue Feb 21 2023 github-actions <[email protected]> - 39.2-1
- Add DNS search and ignore options from kickstart (vslavik)
- Adjust templates after F38 branching (mkolman)
- webui: Fix missing space (vslavik)
* Thu Feb 16 2023 Martin Kolman <[email protected]> - 39.1-1
- Fix new pylint detections (vslavik)
* Wed Feb 15 2023 github-actions <[email protected]> - 38.23-1
- Templatize pykickstart version in dracut code (vslavik)
- Apply --noverifyssl option for liveimg kickstart command (jstodola)
* Tue Feb 14 2023 github-actions <[email protected]> - 38.22-1
- Web UI: Make Pre-release label look clickable (ozobal)
- Web UI: Update help in Installation destination (ozobal)
- Be more indulgent when reclaiming disk space (jstodola)
* Tue Feb 07 2023 github-actions <[email protected]> - 38.21-1
- Sort RPM versions via rpm.labelCompare() and not via
packaging.version.LegacyVersion() (miro)
* Tue Feb 07 2023 github-actions <[email protected]> - 38.20-1
- Add Sericea - ostree based Sway variant (jkonecny)
- Fix the systemd generator for systemd 253 (#2165433) (awilliam)
- WebUI: Updated wizard footer buttons (ozobal)
- Remove the dmraid and nodmraid boot options (vtrefny)
* Tue Jan 31 2023 github-actions <[email protected]> - 38.19-1
- Remove mocking of modules for sphinx docs builds (vslavik)
- docs: Update branching instructions (vslavik)
- docs: Fix release badge URL (vslavik)
- Remove leftovers after the isys module removal (vslavik)
- Templatize kickstart version (vslavik)
- Ignore jinja templates in RPM tests (vslavik)
- Show only usable devices in custom partitioning (jstodola)
- Add base for integration testing and default installation test (zveleba)
- Add storage helper function for listing disks (zveleba)
- Add helper for back button to WebUI tests (zveleba)
- Fix missing tests in release archive (marmarek)
* Tue Jan 24 2023 github-actions <[email protected]> - 38.18-1
- Extend the DBus API of the DNF module (vponcova)
- webui: Disable check for unexpected SELinux denials (martin)
- Clean up the DNF module (vponcova)
* Thu Jan 19 2023 github-actions <[email protected]> - 38.17-1
- Remove the is_complete method of the DNF payload class (vponcova)
- Use another type to make new GCC warnings go away (vslavik)
- Remove outdated GCC error suppression (vslavik)
- Ignore non-quoted array expansion in ShellCheck (vslavik)
- Handle the `repo` kickstart command in the DNF module (vponcova)
- Extend the is_network_required method of the DNF module (vponcova)
- Add the Repositories DBus property to the DNF module (vponcova)
- Fix the check_kickstart_interface testing function (vponcova)
- Always use blivet.arch.is_s390() to detect s390 (vslavik)
* Tue Jan 17 2023 github-actions <[email protected]> - 38.16-1
- UI: Show error messages if the payload setup finishes early (vponcova)
- Fix disk refresh reference for storage screen help (mkolman)
- GUI: Don't try to remove treeinfo repositories if there are none (vponcova)
- Remove the InputCheckHandler.remove_check method (vponcova)
- Remove the GUIInputCheckHandler.can_go_back_focus_if_not method (vponcova)
- Remove the RepoData.repo_id attribute (vponcova)
- Remove the RepoData.create_copy method (vponcova)
- Remove the id_generator function (vponcova)
- Remove the cmp_obj_attrs function (vponcova)
- GUI: Improve configuration of additional repositories (vponcova)
- Don't require a specific nfs format during the payload setup (vponcova)
- Handle invalid protocols during the payload setup (vponcova)
- Show error messages and warnings from the payload setup (vponcova)
- Reorganize the parse_nfs_url function (vponcova)
- Don't list attributes of SSLConfigurationData if empty (vponcova)
- Fix up a quote escaping in release-periodically workflow. (rvykydal)
* Tue Jan 10 2023 github-actions <[email protected]> - 38.15-1
- webui: update obsolete comment (rvykydal)
- webui: pin down tag for fetching cockpit's test library (kkoukiou)
- bootloader/zipl.py: update for zipl >= 2.25.0 (dan)
- docs: Track also automated releases (vslavik)
- shellcheck: Double quote to prevent globbing and word splitting (vponcova)
- Remove the StorageChecker.remove_check method (vponcova)
- Remove the CONNECTION_ACTIVATION_TIMEOUT constant (vponcova)
- Remove the DEFAULT_DBUS_TIMEOUT constant (vponcova)
- GUI: Update the glade file for the Installation Source screen (vponcova)
* Tue Dec 20 2022 github-actions <[email protected]> - 38.14-1
- Fix typo in the docs (jkonecny)
- docs: corrections and additions to the history (msw)
- Ignore SIGINT in D-Bus launcher and x11 too (iasunsea)
* Tue Dec 13 2022 github-actions <[email protected]> - 38.13-1
* Tue Dec 06 2022 github-actions <[email protected]> - 38.12-1
- Web UI: Tests should ignore the volatile space requirement message (skobyda)
- webui: Upgrade to react 18 and enable the new concurrent renderer (kkoukiou)
- Add a block of history about the name of the installer (dcantrell)
* Tue Nov 29 2022 github-actions <[email protected]> - 38.11-1
- Fix the installation message about the payload installation (vponcova)
* Mon Nov 28 2022 github-actions <[email protected]> - 38.10-1
- Web UI: Add a payload to ks.cfg (ozobal)
- Make text in custom_storage_helper more accurate (ozobal)
- test: Update pixel references to current Fedora (martin)
- Fix infobar colors in GTK GUI (ozobal)
* Wed Nov 16 2022 Martin Kolman <[email protected]> - 38.9-1
- Progress step improvements (mkolman)
- makebumpver: Ignore all infra, not just bumps (vslavik)
* Tue Nov 08 2022 Vladimír Slávik <[email protected]> - 38.8-1
- Web UI: Update language selection screen (ozobal)
- There are no installation targets if bootloader devices are not set
(#2131183) (vponcova)
- makebumpver: import bugzilla only if used (vslavik)
- Remove the period at the end of the button caption (bramgn)
- sync_run_task: Poll proxy state faster (vslavik)
- Use more dasbus-ish interface (vslavik)
- Web UI: Redesign language selection screen (ozobal)
- Add GetCommonLocales to API (ozobal)
- network: fix add_connection_sync doc string (rvykydal)
- webui: update pixel tests for "Detect disks" updates (rvykydal)
- webui: Use 'Detect Disks' instead of 'Discover Disks' (rvykydal)
- webui: do not hide checkbox when showing skeleton while rescanning disks
(rvykydal)
- Add release notes for Fedora 37 (vponcova)
- driver_updates: migrate driver_updates.py to pep8 format (jkonecny)
- driver_updates: adding tests for the new logging solution (jkonecny)
- driver_updates: add lot of debug logs for easier debugging (jkonecny)
- driver_updates: extend where we print log messages (jkonecny)
- Change screensaver handling to dasbus, drop safe_dbus (vslavik)
- webui: improve formatting of a promise (rvykydal)
- webui: show alert when there are no discovered disks (rvykydal)
- webui: disable bulk selection during disks discovery (rvykydal)
- webui: add tooltip to disks discovery button (rvykydal)
- webui: replace discovery button spinner with skeleton (rvykydal)
- rpm-ostree: set untrusted ostree pull flag (champetier.etienne)
* Mon Oct 17 2022 Vladimír Slávik <[email protected]> - 38.7-1
- Call date by full path and list it as a dependency (vslavik)
- Remove the isys module and directory (vslavik)
- Move set_system_date_time to pyanaconda.timezone (vslavik)
- Call date instead of settimeofday (vslavik)
- Clean up time-setting (vslavik)
- network: document edge case of resolv.conf missing for %%post scripts
(#2101527) (rvykydal)
- Revert "webui: start using custom webui-desktop script instead of cockpit-
desktop" (rvykydal)
- network: use separate main conext for NM client in threads (rvykydal)
- Clean up configure and #include (vslavik)
- Remove our custom mock auditd binary (vslavik)
- Turn off audit without our custom binary (vslavik)
* Mon Oct 10 2022 Radek Vykydal <[email protected]> - 38.6-1
- Remove bogus dependency on python3-dbus (vslavik)
- Fix a few typos in release document (rvykydal)
- Make driver disk code run only on boot.iso (vslavik)
- Call the Blivet.copy method (vponcova)
- Web UI: Make context help reusable (ozobal)
- Fix Web UI VM startup on F37 (mkolman)
- Don't duplicate dependency on hfsplus-tools (vslavik)
- Move createrepo_c to anaconda-img-deps (vslavik)
- Use faulthandler instead of isys signal handlers (vslavik)
- Fix duplicate alt-D accelerator on root account screen (jeremy.linton)
- Add minimal_memory_needed to hw module (vslavik)
- Use more specific imports in startup_utils (vslavik)
- Use total_memory() from blivet.util instead of ours (vslavik)
- Move storage constraints setting to a helper (vslavik)
- Add tests for is_smt_enabled (vslavik)
- Move some functions from util to hw (vslavik)
- Move memory-related things from isys to new module (vslavik)
- Use existing locale in welcome spoke (vslavik)
- Apply geolocation in main process (vslavik)
- Add back waiting for geolocation (vslavik)
- Add wait_for_task() to wait for a Task with timeout (vslavik)
- dracut: handle compressed kernel modules (m.novosyolov)
* Mon Sep 19 2022 Martin Kolman <[email protected]> - 38.5-1
- Do not require the anaconda-webui package (mkolman)
- Document how to fix NPM cache issues in Cockpit CI (mkolman)
- Use correct hint for VNC password boot option (jstodola)
- infra: Use the Bugzilla API key in the `makebumpver` script (vponcova)
- Drop the devel branch from the docs (mkolman)
- gui: fix summary hub layout for Japanese translations (rvykydal)
- Improve Register button click feedback (mkolman)
* Tue Sep 06 2022 Martin Kolman <[email protected]> - 38.4-1
- Run yelp under liveuser if possible (vslavik)
- Disable the Unregister button during unregistration (mkolman)
- Update outdated system purpose related strings (mkolman)
- Always set system purpose from GUI (mkolman)
- Report registration errors from kickstart (mkolman)
- Do not pass rd.znet on to installed system unconditionally (jstodola)
- Ignore dependabot commits in changelog (vslavik)
- Web UI: Increase visibility of warning messages (ozobal)
- Drop packit override for webui package build (mkolman)
- Create the LVM devices file, if supported (vslavik)
- Remove unused import that snuck in somehow (vslavik)
- Bump SshKeyData version (vslavik)
- Bump pykickstart version for F38_AutoPart (vslavik)
- Document the automated Anaconda package release process (mkolman)
- Web UI: for disks selection show empty label rather than '0 selected'
(rvykydal)
- Web UI: use toolbox in disk selection (rvykydal)
- Web UI: Show the help drawer next to content (ozobal)
- Silence pylint warnings in webui code (vslavik)
- Remove execInSysroot (vslavik)
* Tue Aug 30 2022 Martin Kolman <[email protected]> - 38.3-1
- Add --hibernation option for Kickstart autopart (ozobal)
- Docs: How to run non-unit tests in CI standalone (#docs) (vslavik)
- Define more macros for cppcheck (vslavik)
- Infra templating script improvements (vslavik)
- infra: bump (49699333+dependabot[bot])
- webui: clean up prepare-updates-img (allison.karlitskaya)
- Adjust dependencies of the anaconda-webui package (mkolman)
- test: Update to cockpit 275 (allison.karlitskaya)
- Add test for dracut_eject (vslavik)
- Add test for ipmi_abort (vslavik)
- Add test for ipmi_report (vslavik)
- Simplify test_detect_virtualized_platform (vslavik)
- Rewrite test_vt_activate to use patch (vslavik)
- webui: build RPMs inside the fedora-37 image (allison.karlitskaya)
- Web UI: update target name in test documentation (rvykydal)
- Verify a biosboot partition on all installation targets (vponcova)
- Define the install_targets property for all bootloader classes (vponcova)
- Test the InstallerStorage.copy method (vponcova)
- Show multiple bootloader devices on the Manual Partitioning screen (vponcova)
- Implement the Root.copy method (vponcova)
- Redefine the Blivet.roots attribute (vponcova)
- Redefine the Blivet.copy method (vponcova)
- Add infrastructure templating tools (ozobal)
* Fri Aug 19 2022 Martin Kolman <[email protected]> - 38.2-1
- Fix building for RHEL/ELN without live installer (sgallagh)
- Remove the SimpleConfigFile class (vponcova)
- Don't use the SimpleConfigFile class (vponcova)
- Add a function for splitting values into two strings (vponcova)
- Move DNF code from the payload manager to the DNF payload (vponcova)
- Remove the restart_thread method of the payload manager (vponcova)
- Simplify the implementation of the payload manager (vponcova)
- Remove error messages from the payload manager (vponcova)
- Keep the "Setting up installation source..." message in a new constant
(vponcova)
- Remove the WAITING_NETWORK state of the payload manager (vponcova)
- Remove the VERIFYING_AVAILABILITY state of the payload manager (vponcova)
* Mon Aug 15 2022 Martin Kolman <[email protected]> - 38.1-1
- Remove release builds from CI status page (#docs) (vslavik)
- Update the tests for the SELinux configuration (vponcova)
- Add release notes for RPMOSTree /sysroot mount as 'ro' (jkonecny)
- Documented required space always including swap (ozobal)
- Remove the DeprecatedSection class (vponcova)
- Remove the sensitive info logger (vponcova)
- Remove the _repos_lock property of the DNF payload class (vponcova)
- Remove the function get_locale_timezones (vponcova)
- Remove the THREAD_GEOLOCATION_REFRESH constant (vponcova)
- Add release notes for f37 vslavik PRs (#docs) (vslavik)
- Do not provide the anaconda-live subpackage on RHEL (vslavik)
- Add release note for no more copying /etc/resolv.conf (rvykydal)
- Add release note for rootpw --allow-ssh option (rvykydal)
- Fix growing installation size requirement (ozobal)
- Add a release note for the `inst.disklabel` boot option (vponcova)
- Add unit tests for the initialization of the default disk label type
(vponcova)
- Prefer GPT instead of legacy MBR (vponcova)
- Support the `inst.disklabel` boot option (vponcova)
- Skip Kickstart version tests on RHEL (ozobal)
- Add unit tests for errors raised by the `ZFCPDiscoverTask` task (vponcova)
- rpm-ostree: Setup readonly sysroot for ostree & rw karg (#2086489) (tim)
- Document the Dependabot status (vponcova)
- Initialize empty disks on the Manual Partitioning screen (vponcova)
- Revert "Temporarily ignore the new version of the zfcp command" (jstodola)
- Revert "Ignore also ZFCPData temporarily" (jstodola)
- Allow to omit WWPN and LUN for NPIV-enabled zFCP devices (jstodola)
- Reduce the width of the zFCP dialog (jstodola)
* Tue Aug 02 2022 Martin Kolman <[email protected]> - 37.12-1
- Web UI: Replace a newly translated string in tests (vponcova)
- Communicate media verification result clearly (vslavik)
- Fix: check that the password contains the username (songmingliang)
- Fixed required space check always including swap (ozobal)
- Hide the keyboard layout indicator in the passphrase dialog (#2070823)
(vponcova)
- Call the check_duplicate_repo_names function (vponcova)
- Call the validate_repo_name function (vponcova)
- Call the get_unique_repo_name function (vponcova)
- Simplify the condition for the `disk_space` parameter in `suggest_swap_size`
(vponcova)
- Remove the `quiet` parameter of the `suggest_swap_size` function (vponcova)
- Test the `suggest_swap_size` function (vponcova)
- Web UI: Don't wait for animations in the pixel tests (vponcova)
- Web UI: Show a context help about storage options (vponcova)
- Silence pylint warnings about crypt module (vslavik)
- Ignore no-member pylint detections on gi.repository (vslavik)
- Revert "Disable Pylint" (vslavik)
- bootloader/base.py: enable resume on arm64 (mihai.carabas)
- Disable kexec on RISC-V (imbearchild)
- simplify TestValues enum creation and usage (ethan)
- Disable Pylint (vslavik)
- Fix unit tests for python 3.11 (vslavik)
- Change the Python version to 3.11 in the makeupdates script (rvykydal)
- bootloader: do not consider non-ibft iscsi disk as usable for bootloader
(rvykydal)
- Revert "Temporarily keep setter methods for Initial Setup" (vponcova)
- Revert "Temporarily keep setter methods for the Kdump add-on" (vponcova)
- Change default swap size for large-memory systems (pablomh)
* Mon Jun 27 2022 Vladimir Slavik <[email protected]> - 37.11-1
- anaconda-modprobe: don't try and load cramfs (awilliam)
- module-setup.sh: Don't ignore errors, unbound variable and pipe fails (miro)
- Don't attempt to add frozen python modules to initramfs (miro)
- Fix kickstart command order in new version (vslavik)
- Ignore also ZFCPData temporarily (vslavik)
- Temporarily ignore the new version of the zfcp command (vponcova)
- Web UI: Fix betanag popover position (mkolman)
- Web UI: Make it possible to close the disks alert (mkolman)
- tests: update the order of commands (rootpw) in generated kickstart
(rvykydal)
- webui: Disable "Next" button if no disks are selected (mkolman)
- dnf: apply the /etc/dnf/dnf.conf configuration file in the installer
(rvykydal)
- kstests on pr: run in separate anaconda directory (rvykydal)
- Web UI: Show the "Checking disks" spinner for at least two seconds (vponcova)