Skip to content
This repository was archived by the owner on Mar 7, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion linux/automated-installer/automated-installer
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down