fix: update sed regex patterns to correctly disable ClamAV and Solr in mailcow.conf
This commit is contained in:
parent
34dcbefea0
commit
8a1341e0ae
1 changed files with 2 additions and 2 deletions
|
|
@ -133,9 +133,9 @@ export class AwsCdkStack extends cdk.Stack {
|
|||
'',
|
||||
'# Apply Memory Optimizations for t4g.medium (4GB RAM)',
|
||||
'# Disable ClamAV (Saves ~1.5 GB RAM)',
|
||||
'sed -i "s/SKIP_CLAMAV=n/SKIP_CLAMAV=y/g" mailcow.conf',
|
||||
'sed -i "s/^SKIP_CLAMAV=.*/SKIP_CLAMAV=y/g" mailcow.conf',
|
||||
'# Disable Solr (Saves ~1 GB RAM)',
|
||||
'sed -i "s/SKIP_SOLR=n/SKIP_SOLR=y/g" mailcow.conf',
|
||||
'sed -i "s/^SKIP_SOLR=.*/SKIP_SOLR=y/g" mailcow.conf',
|
||||
'',
|
||||
'# Start Mailcow',
|
||||
'docker compose up -d',
|
||||
|
|
|
|||
Loading…
Reference in a new issue