hotfix: permissions

This commit is contained in:
Emilia Allison 2024-10-27 23:26:49 -04:00
parent 2d4db09753
commit 4970384b10
Signed by: emilia
GPG Key ID: 05D5D1107E5100A1
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ def move_to_final(ssh_process: Popen,
ssh_process.stdin.write(f"rm -rf {target_dir} \n")
ssh_process.stdin.write(f"cp -r {target_temp_dir}_dir {target_dir} \n")
ssh_process.stdin.write(f"chown -R ubuntu:www {target_dir} \n")
ssh_process.stdin.write(f"chmod -R 707 {target_dir} \n")
ssh_process.stdin.write(f"chmod -R 775 {target_dir} \n")
ssh_process.stdin.write(f"rm -rf {target_temp_dir}" +
f" {target_temp_dir}_dir \n")
ssh_process.stdin.write("bye")