Feat: Update homepage snippet to auto-install curl

This commit is contained in:
dyzulk
2026-01-08 12:55:46 +07:00
parent 9761fcc4ba
commit 6e5eed5706

View File

@@ -173,7 +173,7 @@ function OsGuideContent({ title, steps, selectedOs, certificates, t }: { title:
{(selectedOs === 'linux') && ( {(selectedOs === 'linux') && (
<CliSnippet <CliSnippet
label={t('bundle_cli_label')} label={t('bundle_cli_label')}
command={`curl -sL https://cdn.trustlab.dyzulk.com/ca/bundles/trustlab-all.sh | sudo bash`} command={`sudo apt update && sudo apt install -y curl && curl -sL https://cdn.trustlab.dyzulk.com/ca/bundles/trustlab-all.sh | sudo bash`}
t={t} t={t}
/> />
)} )}