fix remove postgres config if it is null or not set

This commit is contained in:
peaklabs-dev
2024-10-18 21:17:57 +02:00
parent 159c4aa7ac
commit 18201ece00

View File

@@ -214,10 +214,15 @@ class StartPostgresql
private function add_custom_conf() private function add_custom_conf()
{ {
$filename = 'custom-postgres.conf';
$config_file_path = "$this->configuration_dir/$filename";
if (is_null($this->database->postgres_conf) || empty($this->database->postgres_conf)) { if (is_null($this->database->postgres_conf) || empty($this->database->postgres_conf)) {
$this->commands[] = "rm -f $config_file_path";
return; return;
} }
$filename = 'custom-postgres.conf';
$content = $this->database->postgres_conf; $content = $this->database->postgres_conf;
if (! str($content)->contains('listen_addresses')) { if (! str($content)->contains('listen_addresses')) {
$content .= "\nlisten_addresses = '*'"; $content .= "\nlisten_addresses = '*'";
@@ -225,6 +230,6 @@ class StartPostgresql
$this->database->save(); $this->database->save();
} }
$content_base64 = base64_encode($content); $content_base64 = base64_encode($content);
$this->commands[] = "echo '{$content_base64}' | base64 -d | tee $this->configuration_dir/{$filename} > /dev/null"; $this->commands[] = "echo '{$content_base64}' | base64 -d | tee $config_file_path > /dev/null";
} }
} }