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

17
installation/basic.sh Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/sh
echo "Basic setup"
# Enable community repo
sed -i 's|^#\(http.*/community\)$|\1|' /etc/apk/repositories
apk update
# Cron jobs
rc-update add crond
cat << EOF > /etc/periodic/daily/chrony
#!/bin/sh
chronyc makestep
EOF
# Allow local.d services
rc-update add local default
rc-service local start