aboutsummaryrefslogtreecommitdiffstats
path: root/hyperterm/core
diff options
context:
space:
mode:
Diffstat (limited to 'hyperterm/core')
-rw-r--r--hyperterm/core/autodep.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/hyperterm/core/autodep.sh b/hyperterm/core/autodep.sh
index a106c82..8973100 100644
--- a/hyperterm/core/autodep.sh
+++ b/hyperterm/core/autodep.sh
@@ -29,9 +29,12 @@ function install_package() {
debian|ubuntu|linuxmint|elementary|pop)
INSTALLER="apt-get update && apt-get install -y $pkg"
;;
- fedora)
+ fedora|rhel|centos|amzn|rocky|almalinux)
INSTALLER="dnf install -y $pkg"
;;
+ opensuse*|suse)
+ INSTALLER="zypper --non-interactive install $pkg"
+ ;;
void)
INSTALLER="xbps-install -Sy $pkg"
;;