system-config/sync-changes.sh

9 lines
355 B
Bash
Raw Permalink Normal View History

2024-12-29 19:51:01 +01:00
#!/bin/bash
set -euo pipefail
ssh infra "cd /var/lib/system-config; git pull; ./setup.sh infra"
ssh home "cd /var/lib/system-config; git pull; ./setup.sh home"
ssh sandbox "cd /var/lib/system-config; git pull; ./setup.sh sandbox"
ssh vps "cd /var/lib/system-config; git pull; ./setup.sh vps"
2025-01-21 11:41:56 +01:00
ssh gpu "cd /var/lib/system-config; git pull; ./setup.sh gpu"