This commit is contained in:
Murat Aslan 2026-03-11 02:29:30 +08:00 committed by GitHub
commit 1d1de761b3
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}";
}
}