Initial commit

This commit is contained in:
Maurice
2025-08-20 17:11:32 +02:00
commit 8c2f438749
21 changed files with 392 additions and 0 deletions

22
install.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/sh
# echo "Installing Git & cloning installation scripts"
apk add git
# git clone TODO
# 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
source ./update.sh