Browse Source

Updated mysql with new repository

hotfix/v3.3.14
Prabuddha Chakraborty 9 years ago
parent
commit
5b189b3075
  1. 8
      ee/cli/plugins/stack.py

8
ee/cli/plugins/stack.py

@ -117,12 +117,12 @@ class EEStackController(CementBaseController):
keyserver="keyserver.ubuntu.com") keyserver="keyserver.ubuntu.com")
chars = ''.join(random.sample(string.ascii_letters, 8)) chars = ''.join(random.sample(string.ascii_letters, 8))
Log.debug(self, "Pre-seeding MySQL") Log.debug(self, "Pre-seeding MySQL")
Log.debug(self, "echo \"mariadb-server-10.0 " Log.debug(self, "echo \"mariadb-server-10.1 "
"mysql-server/root_password " "mysql-server/root_password "
"password \" | " "password \" | "
"debconf-set-selections") "debconf-set-selections")
try: try:
EEShellExec.cmd_exec(self, "echo \"mariadb-server-10.0 " EEShellExec.cmd_exec(self, "echo \"mariadb-server-10.1 "
"mysql-server/root_password " "mysql-server/root_password "
"password {chars}\" | " "password {chars}\" | "
"debconf-set-selections" "debconf-set-selections"
@ -131,12 +131,12 @@ class EEStackController(CementBaseController):
except CommandExecutionError as e: except CommandExecutionError as e:
Log.error("Failed to initialize MySQL package") Log.error("Failed to initialize MySQL package")
Log.debug(self, "echo \"mariadb-server-10.0 " Log.debug(self, "echo \"mariadb-server-10.1 "
"mysql-server/root_password_again " "mysql-server/root_password_again "
"password \" | " "password \" | "
"debconf-set-selections") "debconf-set-selections")
try: try:
EEShellExec.cmd_exec(self, "echo \"mariadb-server-10.0 " EEShellExec.cmd_exec(self, "echo \"mariadb-server-10.1 "
"mysql-server/root_password_again " "mysql-server/root_password_again "
"password {chars}\" | " "password {chars}\" | "
"debconf-set-selections" "debconf-set-selections"

Loading…
Cancel
Save