linux-deployment-scripts/configs/scripts/server.sh

30 lines
582 B
Bash
Raw Normal View History

2024-11-11 07:45:44 +01:00
#!/bin/bash
# This file is part of VM-Experiments.
# Licensed under the GPL-3.0-or-later. See LICENSE for details.
trap '' SIGINT SIGTERM
while true; do
chroot /mnt /bin/bash -c "passwd root"
if [ $? -eq 0 ]; then
break
fi
done
while true; do
read -p "Enter the hostname: " hostname
chroot /mnt /bin/bash -c "echo $hostname > /etc/hostname"
if [ $? -eq 0 ]; then
break
fi
2024-11-11 20:45:42 +01:00
done
rm /mnt/etc/nginx/sites-enabled/default
tar -xzf deployment.tar.gz -C '/mnt/root'
2024-11-12 22:36:02 +01:00
chroot /mnt /bin/bash -c "cd /root/jet-search/ && make install"
2024-11-11 20:45:42 +01:00
read a