mirror of https://github.com/1Panel-dev/1Panel
appstorecrontabdatabasedockerdocker-composedocker-containerdocker-imagedocker-uifilemanagerlamplnmppanel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
450 B
20 lines
450 B
2 years ago
|
#!/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
|
||
|
|
||
|
chmod 755 1pctl install.sh
|