mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-02-17 20:16:48 +01:00
- Install: monolithic install script, venvsetup_modules and venvsetup_monolithic, install_modules (parse_main, menus, actions, etc.), remove legacy email-configs and php-configs from repo, add install/snappymail and Rainloop->SnappyMail migration script - CyberPanel: urls.py, cyberpanel.sh, cyberpanel_upgrade_monolithic.sh tweaks - Firewall: firewall.js and firewall.html updates - plogical: mailUtilities.py, upgrade.py; upgrade_modules 10_post_tweak.sh - pluginHolder: deploy-plugins-template.sh - to-do: docs (git conflicts, HTTP 500 recovery, phpMyAdmin, plugins, SnappyMail rename, install/upgrade OS support, security whitelist, etc.) - upgrade_modules: 02_checks_part1/part2.txt
9 lines
381 B
Bash
9 lines
381 B
Bash
#!/bin/bash
|
||
# CyberPanel install/venvsetup – modular loader. Sources venvsetup_modules/*.sh.
|
||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
for f in 01_vars_install_required 02_memcached_main 03_main_run_pip 04_after_install 05_argument_main; do
|
||
if [[ -f "$SCRIPT_DIR/venvsetup_modules/${f}.sh" ]]; then
|
||
source "$SCRIPT_DIR/venvsetup_modules/${f}.sh"
|
||
fi
|
||
done
|