fixed error: echo should be sed

This commit is contained in:
Asif Bacchus 2019-01-05 04:51:20 -07:00
parent d73e8b904f
commit 59b7d46809
1 changed files with 2 additions and 2 deletions

View File

@ -537,8 +537,8 @@ sed -i -e "s%${tag_sslkey}%${KeyPath}%" "${configPath}/${file_ssl}"
# process mozModern SSL configuration
echo "updating ${warn}${configPath}/${file_mozmodern}${norm}"
echo -i -e "s%${tag_dhparam}%${DHPath}%" "${configPath}/${file_mozmodern}"
echo -i -e "s%${tag_cachain}%${CAChainPath}%" "${configPath}/${file_mozmodern}"
sed -i -e "s%${tag_dhparam}%${DHPath}%" "${configPath}/${file_mozmodern}"
sed -i -e "s%${tag_cachain}%${CAChainPath}%" "${configPath}/${file_mozmodern}"