mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-08-31 23:36:18 +00:00
Update acme.sh
This commit is contained in:
parent
1da94a55e9
commit
84c071a47d
1 changed files with 5 additions and 5 deletions
10
acme.sh
10
acme.sh
|
@ -17,12 +17,12 @@ yellow(){
|
|||
echo -e "\033[33m\033[01m$1\033[0m"
|
||||
}
|
||||
|
||||
REGEX=("debian" "ubuntu" "centos|red hat|kernel|oracle linux|alma|rocky" "'amazon linux'" "fedora" "arch", "manjaro")
|
||||
REGEX=("debian" "ubuntu" "centos|red hat|kernel|oracle linux|alma|rocky" "'amazon linux'" "fedora" "arch", "manjaro", "armbian")
|
||||
RELEASE=("Debian" "Ubuntu" "CentOS" "CentOS" "Fedora", "ArchLinux", "Manjaro")
|
||||
PACKAGE_UPDATE=("apt-get update" "apt-get update" "yum -y update" "yum -y update" "yum -y update", "pacman -Syu", "pacman -Syu")
|
||||
PACKAGE_INSTALL=("apt -y install" "apt -y install" "yum -y install" "yum -y install" "yum -y install", "pacman -S", "pacman -S")
|
||||
PACKAGE_REMOVE=("apt -y remove" "apt -y remove" "yum -y remove" "yum -y remove" "yum -y remove", "pacman -Rns", "pacman -Rns")
|
||||
PACKAGE_UNINSTALL=("apt -y autoremove" "apt -y autoremove" "yum -y autoremove" "yum -y autoremove" "yum -y autoremove")
|
||||
PACKAGE_UPDATE=("apt-get update" "apt-get update" "yum -y update" "yum -y update" "yum -y update", "pacman -Syu", "pacman -Syu", "apt update")
|
||||
PACKAGE_INSTALL=("apt -y install" "apt -y install" "yum -y install" "yum -y install" "yum -y install", "pacman -S", "pacman -S", "apt -y install")
|
||||
PACKAGE_REMOVE=("apt -y remove" "apt -y remove" "yum -y remove" "yum -y remove" "yum -y remove", "pacman -Rns", "pacman -Rns", "apt -y remove")
|
||||
PACKAGE_UNINSTALL=("apt -y autoremove" "apt -y autoremove" "yum -y autoremove" "yum -y autoremove" "yum -y autoremove", "apt -y autoremove")
|
||||
|
||||
[[ $EUID -ne 0 ]] && red "Note: Please run the script as the root user" && exit 1
|
||||
|
||||
|
|
Loading…
Reference in a new issue