This commit is contained in:
Murat Aslan 2026-02-28 08:12:12 -05:00 committed by GitHub
commit e91668429c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -288,5 +288,6 @@ class StartMariadb
$content = $this->database->mariadb_conf;
$content_base64 = base64_encode($content);
$this->commands[] = "echo '{$content_base64}' | base64 -d | tee $this->configuration_dir/{$filename} > /dev/null";
$this->commands[] = "chmod 644 $this->configuration_dir/{$filename}";
}
}

View file

@ -291,5 +291,6 @@ class StartMysql
$content = $this->database->mysql_conf;
$content_base64 = base64_encode($content);
$this->commands[] = "echo '{$content_base64}' | base64 -d | tee $this->configuration_dir/{$filename} > /dev/null";
$this->commands[] = "chmod 644 $this->configuration_dir/{$filename}";
}
}