Skip to content

Commit

Permalink
Fix #1.
Browse files Browse the repository at this point in the history
  • Loading branch information
thw26 committed Jun 14, 2024
1 parent ed09916 commit 6ce677c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,14 +380,14 @@ def get_package_manager():
# IDEA: Switch to Python APT library?
# See https://github.com/FaithLife-Community/LogosLinuxInstaller/pull/33#discussion_r1443623996 # noqa: E501
config.PACKAGE_MANAGER_COMMAND_QUERY = "dpkg -l | grep -E '^.i '"
config.PACKAGES = "coreutils patch lsof wget findutils sed grep gawk winbind cabextract x11-apps bc binutils fuse3"
config.PACKAGES = "coreutils patch lsof wget findutils sed grep gawk winbind cabextract x11-apps binutils fuse3"
config.L9PACKAGES = "" # FIXME: Missing Logos 9 Packages
config.BADPACKAGES = "appimagelauncher"
elif shutil.which('dnf') is not None: # rhel, fedora
config.PACKAGE_MANAGER_COMMAND_INSTALL = "dnf install -y"
config.PACKAGE_MANAGER_COMMAND_REMOVE = "dnf remove -y"
config.PACKAGE_MANAGER_COMMAND_QUERY = "dnf list installed | grep -E ^"
config.PACKAGES = "patch mod_auth_ntlm_winbind samba-winbind samba-winbind-clients cabextract bc libxml2 curl" # noqa: E501
config.PACKAGES = "patch mod_auth_ntlm_winbind samba-winbind samba-winbind-clients cabextract" # noqa: E501
config.L9PACKAGES = "" # FIXME: Missing Logos 9 Packages
config.BADPACKAGES = "appiamgelauncher"
elif shutil.which('pamac') is not None: # manjaro
Expand Down

0 comments on commit 6ce677c

Please sign in to comment.