Browse Source

Fix letsencrypt=off with --all

master
Prabuddha Chakraborty 9 years ago
parent
commit
274833208d
  1. 7
      ee/cli/plugins/site.py

7
ee/cli/plugins/site.py

@ -1213,6 +1213,13 @@ class EESiteUpdateController(CementBaseController):
Log.info(self,"SSL not configured for site http://{0}".format(ee_domain))
return 0
if pargs.all and pargs.letsencrypt == "off":
if letsencrypt is check_ssl:
if letsencrypt is False:
Log.error(self, "SSl is not configured for given "
"site",False)
return 0
if pargs.letsencrypt:
if pargs.letsencrypt == 'on':
data['letsencrypt'] = True

Loading…
Cancel
Save