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
224 B
Bash
Executable File
6 lines
224 B
Bash
Executable File
#!/bin/bash
|
|
# Deploy auf Raspberry Pi (10.66.120.3)
|
|
set -e
|
|
rsync -a backend/ root@10.66.120.3:/opt/zfs-manager/backend/
|
|
ssh root@10.66.120.3 'systemctl restart zfs-manager-backend && systemctl is-active zfs-manager-backend'
|