forked from rhinstaller/anaconda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
anaconda.spec.in
8021 lines (7635 loc) · 417 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.43-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
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: python3-packaging
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
%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/fedora-welcome.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 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)
- Web UI: Show the "Checking disks" spinner (vponcova)
- kstest on pr: use Permian GitHub ReportSender to show results (rvykydal)
- Web UI: Vertically grow the wizard page (vponcova)
- Web UI: Hide the footer if the wizard page is in progress (vponcova)
- Web UI: Add the sleep function (vponcova)
- Web UI: Remove the getSteps function (vponcova)
- Web UI: Remove the wrapWithContext function (vponcova)
- Add Circle Linux profile to Anaconda (bella)
- Web UI: Don't try to replicate installation flags (vponcova)
- Web UI: Remove an unused context from the wizard (vponcova)
- Update pixel test reference image. (mkolman)
- fix type (48353898+copperii)
- Display keyboard accelerator properly (jstodola)
- Revert "Temporarily keep setter methods for the OSCAP add-on" (vponcova)
- Remove missing kickstart command for root ssh password login from common
issues (rvykydal)
- GUI: Show the dialog for a missing passphrase in an enlight box (vponcova)
- GUI: Ask for a missing passphrase during automated installations (vponcova)
- Create functions for a missing passphrase in pyanaconda.ui.lib (vponcova)
- Add support for rootpw --allow-ssh (rvykydal)
- Enable bootloader hiding on RHEL (rharwood)
* Mon Jun 06 2022 Martin Kolman <[email protected]> - 37.10-1
- Web UI: Don't use a top-level text content (vponcova)
- Update common bugs for F35 resolv.conf issue (rvykydal)
- Check if run as root earlier (#1935470) (luke)
- kstests on PR: adapt to tclib renamig to tplib (rvykydal)
- Add 'eln-baseos' to the DEFAULT_REPOS (sgallagh)
- Web UI: Jump only to the previous wizard steps (vponcova)
- Always tear down devices after finding existing installations (vponcova)
- Update reference images (vslavik)
- Change kstest workflow badge and link for Permian (#docs) (vslavik)
- Fix tests README.rst how to run one unit test (jkonecny)
- kstests on PR: Use stable permian branch (rvykydal)
- Don't fall back to default timezone in welcome spoke (vslavik)
- Use directly URLs in conf geoloc provider field (vslavik)
- Remove unmodularized geolocation (vslavik)
- Use modularized geolocation instead of unmodularized (vslavik)
- Hide the geolocation task in Timezone's interface (vslavik)
- Add GeolocationTask to the Timezone module (vslavik)
- Add a D-Bus structure for geolocation data (vslavik)
- Add conf option for geolocation provider (vslavik)
- Run FixZIPLBootloader task after FIPS setup (rvykydal)
- webui: Make app/page span the whole viewport (vslavik)
- Web UI: Automatically change the popover position (vponcova)
- webui: Add inline alert to the Storage screen (mkolman)
- Web UI: Always allow to sort disks by their name (vponcova)
- Web UI: Improve the table for local standard disks (vponcova)
- Add missing period when concatenating password error strings (#2075419)
(jkonecny)
- Prepare release notes for Fedora 36 (vponcova)
- Add tooltip to the Insights checkbox (#2069178) (jkonecny)
- Enable bootloader hiding on RHEL (rharwood)
* Tue May 24 2022 Martin Kolman <[email protected]> - 37.9-1
- Use the IsRootAccountLocked property (vponcova)
- Web UI: Fix strings (vponcova)
* Mon May 23 2022 Martin Kolman <[email protected]> - 37.8-1
- Web UI: Add the Language label on the Welcome page (vponcova)
- Specify that we want the Adwaita icon theme (awilliam)
- Web UI: Fix the style of paragraphs (vponcova)
- Web UI: Fix header styles in the Review screen (vponcova)
- Web UI: Inform users about the required space and the partitioning method
(vponcova)
- Round the required device size up (vponcova)
- tests: Use MD instead of LVM to test available RAID levels (vtrefny)
- webui: Show installation status text on progress screen (mkolman)
- build(deps): bump (49699333+dependabot[bot])
- webui: Wait longer for installation to fail (mkolman)
- webui: Add a Quit confirmation dialog (mkolman)
- build(deps): bump (49699333+dependabot[bot])
- Don't use Cockpit style overrides (vponcova)
- Web UI: Reset the bootloader drive before we schedule partitions (vponcova)
- webui: tests: Streamline working with dbus language setting (zveleba)
- Make check for geolocation start a standalone helper (vslavik)
- Split Timezone module tests for tasks to new file (vslavik)
- Move the default source type on DBus (vponcova)
- Temporarily keep setter methods for Initial Setup (vponcova)
- Temporarily keep setter methods for the OSCAP add-on (vponcova)
- Temporarily keep setter methods for the Kdump add-on (vponcova)
- Use DBus read-write properties (vponcova)
- Simplify the implementation for the DBus interface for Users module
(vponcova)
- Install rdma-core if infiniband network device is found (rvykydal)
* Mon May 09 2022 Martin Kolman <[email protected]> - 37.7-1
- Remove the is_repo_enabled method (vponcova)
- Fix too long lines in the Network spoke (vponcova)
- Rename the checkmount argument (vponcova)
- Rename the onlyOnChange argument (vponcova)
- Run an installation task to close the DNF base (vponcova)
- Close the DNF base during the reset (vponcova)
- Move isIsoImage to the Payloads module (vponcova)
- Move find_first_iso_image to the Payloads module (vponcova)
- Move helper functions for HDISO sources to pyanaconda.ui.lib (vponcova)
- Keep Timezone proxy in Welcome spoke (vslavik)
- Split starting locales in welcome spoke to a helper (vslavik)
- Rename constant to reflect its usage (vslavik)
- makeupdates: Don't be silent about copying anaconda.py (vslavik)
- Remove the get_mount_points function (vponcova)
- Remove PayloadError (vponcova)
- Remove PayloadInstallError (vponcova)
- Remove PayloadSetupError (vponcova)
- (build-deps): Update misc. npm packages (vslavik)
- (build-deps): Update chrome-remote-interface npm package (vslavik)
- (build-deps): Update sass npm packages (vslavik)
- (build-deps): Update patternfly npm packages (vslavik)
- (build-deps): Update eslint npm packages (vslavik)
- (build-deps): Update webpack and plugin npm packages (vslavik)
- (deps-dev): Update babel npm packages (vslavik)
- Add the UpdatesEnabled DBus property (vponcova)
- webui: tests: Add cleanup to TestLanguage to make it non-destructive
(zveleba)
- webui: tests: Change handling of steps and hide selectors in methods
(zveleba)
- Remove the _configure method (vponcova)
- webui: Document how to fix failing pixel tests (mkolman)
- build(deps): bump (49699333+dependabot[bot])
- Remove the unused _set_repo_enabled method (vponcova)
- build(deps): bump (49699333+dependabot[bot])
- Don't continue if there is no valid base source to use (vponcova)
- Clean up the code that includes additional repositories (vponcova)
- Split the code for the installation source spoke (vponcova)
- Remove ancient file (vslavik)
- Convert additional space checkbox to use child label (vslavik)
- Indent everything on root spoke by 4px (vslavik)
- Set correct focused widget for root spoke (vslavik)
- Add eslint as an unit test for webui (vslavik)
- Run eslint only in dev builds or when requested (vslavik)
- Run restorecon in chroot when handling home dirs (vslavik)
- Move restorecon calls in Tasks to a helper function (vslavik)
- Add Virtuozzo Linux profile to Anaconda, Resolves: rhbz#2067195 (dsilakov)
- webui: Don't check SSH key in command from VM script (vslavik)
* Mon Apr 25 2022 Martin Kolman <[email protected]> - 37.6-1
- Map Anaconda exceptions to org.fedoraproject.Anaconda.Error (vponcova)
- Use our error mapper only for the Anaconda message bus (vponcova)
- Clean up the code that adds a base repository (vponcova)
- Remove dependency on eslint-plugin-standard (vslavik)
- webui - Fix pixel test failure due to string being translated (mkolman)
- Call join_paths to create an absolute path (vponcova)
- Document why the DNF transaction runs in a sub-process (vponcova)
- Correct message when ignoring hibernation flag (jblz)
- Clean up the code that reloads the treeinfo metadata (vponcova)
- Don't add treeinfo repositories to DNF twice (vponcova)
- Clean up the code for removal of treeinfo repositories (vponcova)
- Clean up the code that generates treeinfo repositories (vponcova)
- Distinguish URLs from paths in the treeinfo support (vponcova)
- Improve logic of the keyboard spoke completed method (jkonecny)
- webui: tests: Add function for checking pre-release information (zveleba)
- build(deps): bump (49699333+dependabot[bot])
- webui: tests: Make it easier to reset partitioning (zveleba)
- webui: tests: increase abstraction of changing pages in the wizard (zveleba)
- build(deps): bump (49699333+dependabot[bot])
- webui: Update READMEs (mmarusak)
- Don't unnecessarily use cat and use grep -E (oguz)
* Tue Apr 12 2022 Martin Kolman <[email protected]> - 37.5-1
- Fix keyboard spoke issue if Live system changed keyboard layouts (#2072941)
(jkonecny)
- webui: tests: update reference image for the languate test (kkoukiou)
- webui: fix typo in progress page (oguz)
- webui: Update pixel test reference (mkolman)
- webui: use className for customizing CSS not an ID (kkoukiou)
- webui: be more specific in the custom CSS selectors for the progress stepper
(kkoukiou)
- webui: remove unused custom CSS for the progress bar component (kkoukiou)
- webui: show all installation logs in a LogViewer component (kkoukiou)
- webui: Use ProgressStepper on the installation progress screen (mkolman)
- webui: update welcome page title text (kkoukiou)
- webui: improve documentation and add makefile target for updating reference
images (kkoukiou)
- webui: tests: make sure TestReview cleans up its changes (kkoukiou)
- webui: tests: extend storage test to validate the disk table rows content
(kkoukiou)
- webui: tests: add a test for backend language being initially not english
(kkoukiou)
- webui: add a basic check that the webui strings get translated (kkoukiou)
- webui: fix case where the default language is not english (kkoukiou)
- webui: set modules locale for translating messages from the backend
(kkoukiou)
- webui: Also filter languages by English names (mmarusak)
- Don't set LC_ALL for live installations (vponcova)
- Don't set the global domain to `anaconda` (vponcova)
- webui: Support other rsync targets (martin)
- webui: tests: Wait for UI initialization in Installer.open() (martin)
- webui: tests: Simplify check-basic (martin)
- webui: fix typo in the review configuration disk table (kkoukiou)
- webui: tests: ignore the labels (PF4 Labels) when pixel testing (kkoukiou)
- webui: tests: introduce some pixel tests (kkoukiou)
- Don't log the output of journalctl -b (vponcova)
- webui: tests: add missing machine_class to the check-language (kkoukiou)
- webui: tests: use the prefixes of the ids from variables (kkoukiou)
- webui: tests: ignore test/images symlink needed for the tests (kkoukiou)
- webui: standardize the naming of the ids and classNames (kkoukiou)
- webui: bring some order to the react components folder (kkoukiou)
- Fix unit tests of the treeinfo support (vponcova)
- Rename the `path` property of the TreeInfoRepoMetadata class (vponcova)
- Log info about loaded .treeinfo files (vponcova)
- Use the origin to handle system repositories (vponcova)
- Add the `origin` attribute to the repo configuration data (vponcova)
- webui: setup pixel tests submodule (kkoukiou)
- webui: tests: add teardown cleanup resetting the language to english
(kkoukiou)
- webui: tests: standardize test file names by removing -installation-
substring (kkoukiou)
- webui: port review screen confirmation from checkbox to modal dialog
(kkoukiou)
- Bump Cockpit version of testlib to 266 (vslavik)
- webui: default language should be fetched from anaconda backend (kkoukiou)
- webui: add support for disabling Next button if form is invalid (kkoukiou)
- webui: pass translated string for 'No results found' text (kkoukiou)
- webui: move language setting of cookies and backend (kkoukiou)
- webui: menuAppendTo can be a property of Select component from Patternfly
(kkoukiou)
- webui: remove undefined property from InstallationLanguage component
(kkoukiou)
- webui: create helpers for language conversion from and to cockpit lang cookie
(kkoukiou)
- webui: set language also in backend when selecting a new language (kkoukiou)
- webui: tests: use id instead of contains: for the Quit button test selector
(kkoukiou)
- webui: tests: add a test for the Quit button (kkoukiou)
- webui: if the file is empty don't try to parse it (kkoukiou)
- webui: adjust error message to make it unique and matching the actual problem
(kkoukiou)
- webui: remove unused parameter from conf.js helper function (kkoukiou)
- webui: parsing the files for the initialization can be done in parallel
(kkoukiou)
- webui: fix 'Reboot' and 'Quit' button callbacks (kkoukiou)
- webui: Make it possible to go back to language selection screen (mkolman)
- webui: Add Review screen implementation (mkolman)
- webui: add support for re-scanning disks (kkoukiou)
- webui: Add API for selected disks access (mkolman)
- webui: Add API for target system language access (mkolman)
- webui: add title and icon to the empty-state component in the installation
progress (kkoukiou)
- webui: tests: create some helper test classes (kkoukiou)
- Mark error message for missing usable disks for partitioning as translatable
(kkoukiou)
- Don't re-enable repositories (vponcova)
- Use the disabled_repositories configuration option (vponcova)
- Add the get_matching_repositories method (vponcova)
- Manage the system repositories with DNF manager (vponcova)
- Remove the _reset_configuration method of the DNF payload class (vponcova)
- webui: show empty state loading variant if the API is still fetching data
(kkoukiou)
- webui: storage: if more than 10 disks are present change the table to compact
(kkoukiou)
- webui: storage: only show sortable columns if more than one disks exist
(kkoukiou)
- webui: allow passing different label for the wizard nav item and the step
title (kkoukiou)
- webui: rephrase the welcome screen label for the language selector (kkoukiou)
- Add Release Notes for keyboard configuration split on Live (#2016613)
(jkonecny)
- Enable fingerprint authentication using enable-feature (#2069899) (vponcova)
- webui: Close installer to quit/reboot/finish (vslavik)
- webui: Increase size of VM disk for interactive work (vslavik)
- webui: Don't use inst.nokill for testing VMs (vslavik)
- webui: Save webui wrapper script PID (vslavik)
- Fix the documentation of the languages attribute in packages configuration
(vponcova)
- webui: expose webui.remote boot option (kkoukiou)
- Clean up pyanaconda.payload.utils (vponcova)
- Clean up the RepoData class (vponcova)
- Use a task to set up an additional HDD repository (vponcova)
- Add the parse_hdd_url function (vponcova)
- Improve the recommendation from the swap verification check (vponcova)
- Improve the error message from the OPAL compatibility check (vponcova)
- webui: Test both betanag states (vslavik)
* Mon Mar 28 2022 Martin Kolman <[email protected]> - 37.4-1
- Remove the unused _noop method (vponcova)
- Fix failing pylint check. (rvykydal)
- Use a task to set up an additional NFS repository (vponcova)
- Parse both formats of the NFS repositories (vponcova)
- webui: start using custom webui-desktop script instead of cockpit-desktop
(kkoukiou)
- ShellCheck: Quote also variables inside ${...} (vslavik)
- Move the validation of system repositories (vponcova)
- Always load new enabled repositories to check their validity (vponcova)
- Don't allow to load metadata of a disabled repository (vponcova)
- Remove the _add_repo_to_dnf_and_ks method of the DNF payload class (vponcova)
- Use the DNF manager to load all enabled repositories (vponcova)
- Add the load_packages_metadata method to the DNF manager (vponcova)
- Extend the DBus documentation of the Storage module (vponcova)
- webui: add helper text in the installation destination step (kkoukiou)
- webui: adapt the wizard body headers and other captions to the design mockups
(kkoukiou)
- webui: move installation destination step to ListingTable component
(kkoukiou)
- Clarify which Anaconda profile is used by CentOS Stream (vponcova)
- webui: prefer constant variable when possible (kkoukiou)
- webui: bring some order to the imports (kkoukiou)
- webui: move wizard code out of app.jsx to a new file (kkoukiou)
- webui: stop using titleId without a title (kkoukiou)
- webui: keep a list of visited pages for deciding which nav items are enabled
(kkoukiou)
- webui: stop passing 'address' variable to the Footer component (kkoukiou)
- webui: tests: do not start the installation in non-destructive tests
(kkoukiou)
- webui: convert wizard to in-page and add a betanag label (kkoukiou)
- Add the generate_driver_disk_repositories function (vponcova)
- Split some code from the update_base_repo method (vponcova)
- Handle the inst.addrepo option in the DNF payload class (vponcova)