This commit is contained in:
Zsolt Ero
2024-01-03 14:21:20 +01:00
parent ac9803ee69
commit 7b85483993

View File

@@ -1,6 +1,7 @@
import os import os
import secrets import secrets
import string import string
from pathlib import Path
def put( def put(
@@ -27,6 +28,33 @@ def put(
set_permission(c, remote_path, permissions=permissions, owner=owner, group=group) set_permission(c, remote_path, permissions=permissions, owner=owner, group=group)
def put_dir(
c,
local_dir: Path,
remote_dir,
dir_permissions=None,
file_permissions=None,
owner='root',
group=None,
exclude_set=None,
):
"""
copies all files from local path to remote path
not recursive
"""
files = [file for file in local_dir.iterdir() if file.is_file()]
if exclude_set:
files = [f for f in files if f.name not in exclude_set]
c.sudo(f'mkdir -p "{remote_dir}"')
set_permission(c, remote_dir, permissions=dir_permissions, owner=owner, group=group)
for file in files:
put(c, file, f'{remote_dir}/{file.name}', file_permissions, owner, group)
def put_str(c, remote_path, str_): def put_str(c, remote_path, str_):
tmp_file = 'tmp.txt' tmp_file = 'tmp.txt'
with open(tmp_file, 'w') as outfile: with open(tmp_file, 'w') as outfile: