diff --git a/grr/server/grr_response_server/bin/config_updater_util.py b/grr/server/grr_response_server/bin/config_updater_util.py index 420c4f8ae..723a5a74e 100644 --- a/grr/server/grr_response_server/bin/config_updater_util.py +++ b/grr/server/grr_response_server/bin/config_updater_util.py @@ -438,8 +438,9 @@ def _WriteEnabled(self, config): cp = config_pb2.Config() cp.configuration_name = "Fleetspeak" cp.components_config.mysql_data_source_name = ( - "{user}:@tcp({host}:{port})/{db}".format( + "{user}:{password}@tcp({host}:{port})/{db}".format( user=self.mysql_username, + password=self.mysql_password, host=self.mysql_host, port=self.mysql_port, db=self.mysql_database))