Install dbus-glib when setting up Firefox at console

Seems to be needed since 85.0-2. See discussion at
https://bodhi.fedoraproject.org/updates/FEDORA-2021-1d4180de72 .

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2021-01-26 18:19:48 -08:00
parent 1308d104d4
commit 78af6bfb05
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,8 @@ sub run {
assert_script_run "dnf ${extraparams} -y install libglvnd-egl", 160;
# try to avoid random weird font selection happening
assert_script_run "dnf ${extraparams} -y install dejavu-sans-fonts dejavu-sans-mono-fonts dejavu-serif-fonts", 160;
# since firefox-85.0-2, firefox doesn't seem to run without this
assert_script_run "dnf ${extraparams} -y install dbus-glib", 160;
assert_script_run "dnf ${extraparams} -y install firefox", 160;
}