Update exec_cmd in post_install_cmds_linux to include wait and timeout options

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-10-24 15:44:50 -03:00
parent c1778d15ca
commit 619dc39ddb

View file

@ -208,7 +208,7 @@ post_install_cmds_linux: vec![
pre_install_cmds_windows: vec![],
post_install_cmds_windows: vec![],
env_vars: HashMap::new(),
exec_cmd: "./bin/pg_ctl -D {{DATA_PATH}}/pgdata -l {{LOGS_PATH}}/postgres.log start".to_string(),
exec_cmd: "./bin/pg_ctl -D {{DATA_PATH}}/pgdata -l {{LOGS_PATH}}/postgres.log start -w -t 30".to_string(),
});
}