Files
alpine-server-setup/install.sh
2025-09-23 20:55:46 +02:00

22 lines
450 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
source ./firewall.sh
cd "$base_dir"
# Run update script with install argument to set up services
source ./update.sh install