Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--install.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/install.sh b/install.sh
index 9f46d4df..a9b6711b 100644
--- a/install.sh
+++ b/install.sh
@@ -82,16 +82,16 @@ fi
install_base() {
case "${release}" in
centos | almalinux | rocky)
- yum -y update && yum install -y -q wget curl tar
+ yum -y update && yum install -y -q wget curl tar tzdata
;;
fedora)
- dnf -y update && dnf install -y -q wget curl tar
+ dnf -y update && dnf install -y -q wget curl tar tzdata
;;
arch | manjaro)
- pacman -Syu && pacman -Syu --noconfirm wget curl tar
+ pacman -Syu && pacman -Syu --noconfirm wget curl tar tzdata
;;
*)
- apt-get update && apt install -y -q wget curl tar
+ apt-get update && apt install -y -q wget curl tar tzdata
;;
esac
}