Files
alpine-server-setup/install.sh
2025-10-01 14:44:32 +02:00

24 lines
454 B
Bash
Executable File

#!/bin/sh
clear
echo "Starting installation..."
cp -f ./config/.profile /root/.profile
# Install podman-openrc tool
apk add cargo
cargo install podman-openrc
base_dir=$(pwd)
# Run installation scripts
cd ./installation
source ./basic.sh
source ./podman.sh
cd "$base_dir"
read -n 1 -s -r -p "Press any key to start service installation..."
# Run update script with install argument to set up services
chmod +x ./update.sh
source ./update.sh install