2023-05-24 16:46:28 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
command -v wget >/dev/null || {
|
|
|
|
echo "wget not found, please install it and try again ."
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if [ ! -f "1pctl" ]; then
|
|
|
|
wget https://github.com/1Panel-dev/installer/raw/main/1pctl
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f "1panel.service" ]; then
|
|
|
|
wget https://github.com/1Panel-dev/installer/raw/main/1panel.service
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f "install.sh" ]; then
|
|
|
|
wget https://github.com/1Panel-dev/installer/raw/main/install.sh
|
|
|
|
fi
|
|
|
|
|
2023-05-31 15:44:18 +08:00
|
|
|
if [ ! -f "docker.sh" ]; then
|
|
|
|
wget https://github.com/1Panel-dev/installer/raw/main/docker.sh
|
|
|
|
fi
|
|
|
|
|
2023-05-24 16:46:28 +08:00
|
|
|
chmod 755 1pctl install.sh
|