From d72930ebe5abe2245ed6e3fac249d1dd2f7ef64a Mon Sep 17 00:00:00 2001 From: sivankumar86 Date: Mon, 19 Sep 2022 14:20:30 +1000 Subject: [PATCH] permission change permission change --- linux/automated-installer/automated-installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/automated-installer/automated-installer b/linux/automated-installer/automated-installer index 33d445c..e1ee0c4 100755 --- a/linux/automated-installer/automated-installer +++ b/linux/automated-installer/automated-installer @@ -476,7 +476,7 @@ find_running_username() { # This function creats a temporary password file, on which tsm_admin_password or tableau-server-admin-password is populated and sent along with command create_temporary_password_file(){ temporary_password_file=$(mktemp) - chmod 0600 "${temporary_password_file}" + chmod 0655 "${temporary_password_file}" chown "${running_username}" "${temporary_password_file}" trap "rm -f ${temporary_password_file}" EXIT }