mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
Update index.tsx
This commit is contained in:
parent
1e14a2dfc1
commit
c3754d531c
@ -16,6 +16,7 @@ type InstallOptions = Record<string, InstallOption>;
|
||||
const defaultOptions: InstallOptions = {
|
||||
hostname: { value: "", description: "Set the FQDN hostname." },
|
||||
version: { value: "", description: "Set a custom OpenPanel version to be installed." },
|
||||
email: { value: "", description: "Email address to receive admin logins and future notifications." },
|
||||
"skip-requirements": { value: false, description: "Skip the requirements check." },
|
||||
"skip-panel-check": { value: false, description: "Skip checking if existing panels are installed." },
|
||||
"skip-apt-update": { value: false, description: "Skip the APT update." },
|
||||
@ -65,7 +66,7 @@ const Install: React.FC = () => {
|
||||
let command = "bash <(curl -sSL https://get.openpanel.co/)";
|
||||
for (const [option, config] of Object.entries(installOptions)) {
|
||||
if (option !== "version" || (option === "version" && config.value !== latestVersion)) {
|
||||
if (config.value || ["version", "hostname", "screenshots", "post-install"].includes(option)) {
|
||||
if (config.value || ["version", "hostname", "email", "screenshots", "post-install"].includes(option)) {
|
||||
if (option === "screenshots" && config.value === "local") {
|
||||
command += ` --screenshots=local`;
|
||||
} else if (option === "screenshots" && config.value === "remote") {
|
||||
|
Loading…
Reference in New Issue
Block a user