Move 150+ scripts from root and scripts/ into client/project directories: - clients/dataforth/scripts/ (110 files: AD2, sync, SSH, DB, DOS scripts) - clients/bg-builders/scripts/ (14 files: Lesley mgmt, Exchange, termination) - clients/internal-infrastructure/scripts/ (10 files: GDAP, Gitea, backups) - projects/msp-tools/scripts/ (9 files: CIPP, MSP onboarding, Datto) - projects/gururmm-agent/scripts/ (3 files: API test, JWT, record counts) - clients/glaztech/scripts/ (1 file: CentraStage removal) Also reorganized: - VPN scripts → infrastructure/vpn-configs/ - Retrieved API/JS files → api/ - Forum posts → projects/community-forum/forum-posts/ - SSH docs → clients/internal-infrastructure/docs/ - NWTOC/CTONW docs → projects/wrightstown-smarthome/docs/ - ACG website files → projects/internal/acg-website-2025/ - Dataforth docs → clients/dataforth/docs/ - schema-retrieved.sql → docs/database/ Deleted 24 tmp_*.ps1 one-off debug scripts (preserved in git history). Root reduced from 220+ files to 62 items (docs + directories only). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
1.1 KiB
Bash
36 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
echo "================================================"
|
|
echo "Manually Pushing BAT Files to NAS"
|
|
echo "================================================"
|
|
echo ""
|
|
|
|
echo "[1/3] Pushing files to /data/test/COMMON/ProdSW/..."
|
|
scp -o StrictHostKeyChecking=no \
|
|
D:/ClaudeTools/DEPLOY.BAT \
|
|
D:/ClaudeTools/CTONW.BAT \
|
|
D:/ClaudeTools/CTONWTXT.BAT \
|
|
D:/ClaudeTools/NWTOC.BAT \
|
|
D:/ClaudeTools/UPDATE.BAT \
|
|
D:/ClaudeTools/CHECKUPD.BAT \
|
|
D:/ClaudeTools/STAGE.BAT \
|
|
D:/ClaudeTools/REBOOT.BAT \
|
|
D:/ClaudeTools/AUTOEXEC.BAT \
|
|
root@192.168.0.9:/data/test/COMMON/ProdSW/
|
|
echo "[OK] COMMON/ProdSW updated"
|
|
echo ""
|
|
|
|
echo "[2/3] Pushing UPDATE.BAT to /data/test/ root..."
|
|
scp -o StrictHostKeyChecking=no D:/ClaudeTools/UPDATE.BAT root@192.168.0.9:/data/test/
|
|
echo "[OK] UPDATE.BAT pushed to root"
|
|
echo ""
|
|
|
|
echo "[3/3] Pushing DEPLOY.BAT to /data/test/ root..."
|
|
scp -o StrictHostKeyChecking=no D:/ClaudeTools/DEPLOY.BAT root@192.168.0.9:/data/test/
|
|
echo "[OK] DEPLOY.BAT pushed to root"
|
|
echo ""
|
|
|
|
echo "================================================"
|
|
echo "Manual Push Complete!"
|
|
echo "================================================"
|