10 lines
280 B
Bash
10 lines
280 B
Bash
|
|
#!/bin/sh
|
||
|
|
# Genereer config + deploy naar Proxmox (na wijziging websites.yaml of Homarr)
|
||
|
|
set -e
|
||
|
|
APP="$(cd "$(dirname "$0")" && pwd)"
|
||
|
|
cd "$APP"
|
||
|
|
echo "=== Config genereren (Homarr + websites.yaml) ==="
|
||
|
|
python3 generate-config.py
|
||
|
|
echo "=== Deploy naar CT 120 ==="
|
||
|
|
./deploy-to-pve.sh
|