move to scripts

This commit is contained in:
Zsolt Ero
2024-08-29 01:27:08 +02:00
parent 4d20bba7d1
commit 2fc91aa470
3 changed files with 9 additions and 2 deletions

View File

@@ -140,7 +140,10 @@ def upload_http_host_files(c):
c.sudo(f'mkdir -p {HTTP_HOST_BIN}')
put_dir(c, SCRIPTS_DIR / 'http_host', HTTP_HOST_BIN, file_permissions='755')
put_dir(c, SCRIPTS_DIR / 'http_host' / 'http_host_lib', f'{HTTP_HOST_BIN}/http_host_lib')
for dirname in ['http_host_lib', 'scripts']:
put_dir(c, SCRIPTS_DIR / 'http_host' / dirname, f'{HTTP_HOST_BIN}/{dirname}')
put_dir(
c,
SCRIPTS_DIR / 'http_host' / 'http_host_lib' / 'nginx',