Files
alpine-server-setup/install.sh
Maurice aea521cba4 Update
2025-09-24 14:00:38 +02:00

21 lines
429 B
Bash
Executable File

#!/bin/sh
# echo "Installing Git & cloning installation scripts"
apk add git
git clone https://git.plabble.org/Maurice/alpine-server-setup.git ./config
# 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"
# Run update script with install argument to set up services
source ./update.sh install