Skip to content

Commit

Permalink
[FIX] odoo_install: add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Yenthe666 authored Jul 10, 2023
1 parent 0aafdd6 commit 87c8ade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions odoo_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -399,10 +399,10 @@ if [ $INSTALL_NGINX = "True" ] && [ $ENABLE_SSL = "True" ] && [ $ADMIN_EMAIL !=
echo "SSL/HTTPS is enabled!"
else
echo "SSL/HTTPS isn't enabled due to choice of the user or because of a misconfiguration!"
if $ADMIN_EMAIL = "[email protected]" then
if $ADMIN_EMAIL = "[email protected]";then
echo "Certbot does not support registering [email protected]. You should use real e-mail address."
fi
if $WEBSITE_NAME = "_" then
if $WEBSITE_NAME = "_";then
echo "Website name is set as _. Cannot obtain SSL Certificate for _. You should use real website address."
fi
fi
Expand Down

1 comment on commit 87c8ade

@amin-bdf
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

when i installed odoo with this script on MY server ubuntu 22.04 , i faced an issue with wkhtmltopdf version i guess , because when i print the invoice i miss the footer and the header in the invoice , do you have a solution for that ?

Please sign in to comment.