Browse Source

pre check applied on creating site

bugfixes
harshadyeola 10 years ago
parent
commit
f9296eadf2
  1. 7
      ee/cli/plugins/site.py

7
ee/cli/plugins/site.py

@ -471,6 +471,13 @@ class EESiteCreateController(CementBaseController):
# Check rerequired packages are installed or not # Check rerequired packages are installed or not
ee_auth = site_package_check(self, stype) ee_auth = site_package_check(self, stype)
try:
pre_run_checks(self)
except SiteError as e:
Log.debug(self, str(e))
Log.error(self, "NGINX configuration check failed.")
try: try:
try: try:
# setup NGINX configuration, and webroot # setup NGINX configuration, and webroot

Loading…
Cancel
Save