-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] odoo_install: add missing semicolon
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
87c8ade
There was a problem hiding this comment.
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 ?