├── .gitignore ├── 1pctl ├── LICENSE ├── README.md ├── initscript ├── 1panel-agent.init ├── 1panel-agent.openrc ├── 1panel-agent.procd ├── 1panel-agent.service ├── 1panel-core.init ├── 1panel-core.openrc ├── 1panel-core.procd └── 1panel-core.service ├── install.sh ├── lang ├── en.sh ├── fa.sh ├── pt-BR.sh ├── ru.sh └── zh.sh └── quick_start.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | target/ 4 | .DS_Store 5 | .vscode/ -------------------------------------------------------------------------------- /1pctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/1pctl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/README.md -------------------------------------------------------------------------------- /initscript/1panel-agent.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/initscript/1panel-agent.init -------------------------------------------------------------------------------- /initscript/1panel-agent.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/initscript/1panel-agent.openrc -------------------------------------------------------------------------------- /initscript/1panel-agent.procd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/initscript/1panel-agent.procd -------------------------------------------------------------------------------- /initscript/1panel-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/initscript/1panel-agent.service -------------------------------------------------------------------------------- /initscript/1panel-core.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/initscript/1panel-core.init -------------------------------------------------------------------------------- /initscript/1panel-core.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/initscript/1panel-core.openrc -------------------------------------------------------------------------------- /initscript/1panel-core.procd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/initscript/1panel-core.procd -------------------------------------------------------------------------------- /initscript/1panel-core.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/initscript/1panel-core.service -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/install.sh -------------------------------------------------------------------------------- /lang/en.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/lang/en.sh -------------------------------------------------------------------------------- /lang/fa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/lang/fa.sh -------------------------------------------------------------------------------- /lang/pt-BR.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/lang/pt-BR.sh -------------------------------------------------------------------------------- /lang/ru.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/lang/ru.sh -------------------------------------------------------------------------------- /lang/zh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/lang/zh.sh -------------------------------------------------------------------------------- /quick_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Panel-dev/installer/HEAD/quick_start.sh --------------------------------------------------------------------------------