From 8da601be0f29bd29146b3844a2391f8dc03310bc Mon Sep 17 00:00:00 2001 From: Patrick Date: Tue, 12 Nov 2024 22:36:02 +0100 Subject: [PATCH] post install scripts are required --- configs/debian/bookworm_server.json | 2 +- configs/scripts/server.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/debian/bookworm_server.json b/configs/debian/bookworm_server.json index 5efb666..299c085 100644 --- a/configs/debian/bookworm_server.json +++ b/configs/debian/bookworm_server.json @@ -6,7 +6,7 @@ "repositories": [], "replace_repositories": "False", "keyrings": [], - "packages": "nginx grub-pc linux-image-amd64 live-task-standard python3.11-venv", + "packages": "nginx grub-pc linux-image-amd64 docker.io make curl", "scripts": [ "configs/scripts/install.sh", "configs/scripts/server.sh" diff --git a/configs/scripts/server.sh b/configs/scripts/server.sh index c25e553..8ea3e09 100755 --- a/configs/scripts/server.sh +++ b/configs/scripts/server.sh @@ -24,6 +24,6 @@ done rm /mnt/etc/nginx/sites-enabled/default tar -xzf deployment.tar.gz -C '/mnt/root' -chroot /mnt /bin/bash -c "./root/jet-search/deploy/setup.sh" +chroot /mnt /bin/bash -c "cd /root/jet-search/ && make install" read a