Browse Source

Fixed MySQL host in Postfix configuration

bugfixes
gau1991 10 years ago
parent
commit
f894c9e6fe
  1. 2
      ee/cli/plugins/stack.py

2
ee/cli/plugins/stack.py

@ -776,7 +776,7 @@ class EEStackController(CementBaseController):
Log.debug(self, "Creating directory "
"/etc/postfix/mysql/")
os.makedirs('/etc/postfix/mysql/')
data = dict(password=vm_passwd, host=EEVariables.ee_mysql)
data = dict(password=vm_passwd, host=EEVariables.ee_mysql_host)
vm_config = open('/etc/postfix/mysql/virtual_alias_maps.cf',
'w')
self.app.render((data), 'virtual_alias_maps.mustache',

Loading…
Cancel
Save