7 lines
354 B
Batchfile
7 lines
354 B
Batchfile
@echo off
|
|
title Nexus Flamenco Manager
|
|
echo Connecting to nexus and starting Flamenco Manager...
|
|
REM -t allocates a PTY so Ctrl+C sends SIGINT to flamenco-manager (clean SQLite shutdown).
|
|
REM exec replaces the shell with the manager so signals go to the right process.
|
|
ssh -t nexus "cd /mnt/PHOENIX/flamenco/software/Flamenco && exec ./flamenco-manager"
|