Skip to content

Commit

Permalink
Add missing nala
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevithakannan2 committed Sep 19, 2024
1 parent f0e8861 commit 93ac106
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tabs/applications-setup/browser-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ install_thorium() {
install_firefox() {
printf "%b\n" "${YELLOW}Installing Mozilla Firefox...${RC}"
case "$PACKAGER" in
apt-get)
apt-get|nala)
"$ESCALATION_TOOL" "$PACKAGER" update
"$ESCALATION_TOOL" "$PACKAGER" install -y firefox
;;
Expand Down
2 changes: 1 addition & 1 deletion tabs/system-setup/5-samba-ssh-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ setup_ssh() {

# Detect package manager and install appropriate SSH package
case "$PACKAGER" in
"apt-get")
"apt-get|nala")
install_package openssh-server
SSH_SERVICE="ssh"
;;
Expand Down
4 changes: 2 additions & 2 deletions tabs/system-setup/6-docker-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ choose_installation() {
install_docker() {
printf "%b\n" "${YELLOW}Installing Docker...${RC}"
case "$PACKAGER" in
apt-get | yum)
apt-get|nala|yum)
curl -fsSL https://get.docker.com | sh
;;
zypper)
Expand All @@ -46,7 +46,7 @@ install_docker() {
install_docker_compose() {
printf "%b\n" "${YELLOW}Installing Docker Compose...${RC}"
case "$PACKAGER" in
apt-get | yum)
apt-get|nala|yum)
"$ESCALATION_TOOL" "$PACKAGER" update
"$ESCALATION_TOOL" "$PACKAGER" install -y docker-compose-plugin
;;
Expand Down
2 changes: 1 addition & 1 deletion tabs/utils/encrypt_decrypt_tool.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if ! command_exists openssl; then
pacman)
"$ESCALATION_TOOL" "$PACKAGER" -Syu --noconfirm openssl
;;
apt-get)
apt-get|nala)
"$ESCALATION_TOOL" "$PACKAGER" update && "$ESCALATION_TOOL" "$PACKAGER" install -y openssl
;;
dnf)
Expand Down

0 comments on commit 93ac106

Please sign in to comment.