b941c5db51
4 veraltete Skripte durch 2 einfache ersetzt: deploy-test.sh + deploy-pi.sh Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
6 lines
226 B
Bash
Executable File
6 lines
226 B
Bash
Executable File
#!/bin/bash
|
|
# Deploy auf Test-Container (192.168.1.179)
|
|
set -e
|
|
rsync -a backend/ root@192.168.1.179:/opt/zmb-webui/backend/
|
|
ssh root@192.168.1.179 'systemctl restart zmb-webui-backend && systemctl is-active zmb-webui-backend'
|