Skip to content

Commit

Permalink
change perm to 744
Browse files Browse the repository at this point in the history
Signed-off-by: Vivek Shankar <[email protected]>
  • Loading branch information
vivekshankar1 committed Dec 27, 2024
1 parent d288915 commit c651bdc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,11 @@ ensure_dir_ownership() {
# set pg_log directory permissions to 644
pg_log_dir={{pkg.svc_var_path}}/pg_log
if [ -d "$pg_log_dir" ]; then
chmod 0644 "$pg_log_dir"
chmod 0744 "$pg_log_dir"
else
echo "pg_log directory does not exist"
mkdir -p "$pg_log_dir"
chmod 0644 "$pg_log_dir"
chmod 0744 "$pg_log_dir"
ls -l "$pg_log_dir"
fi
}
Expand Down

0 comments on commit c651bdc

Please sign in to comment.