hotfix: permissions
This commit is contained in:
parent
2d4db09753
commit
4970384b10
|
@ -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"rm -rf {target_dir} \n")
|
||||||
ssh_process.stdin.write(f"cp -r {target_temp_dir}_dir {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"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}" +
|
ssh_process.stdin.write(f"rm -rf {target_temp_dir}" +
|
||||||
f" {target_temp_dir}_dir \n")
|
f" {target_temp_dir}_dir \n")
|
||||||
ssh_process.stdin.write("bye")
|
ssh_process.stdin.write("bye")
|
||||||
|
|
Loading…
Reference in New Issue