22 lines
401 B
Bash
Executable File
22 lines
401 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
|
|
source ./update.sh |