Files
CK-X/remote-desktop/startup.sh
2025-04-05 15:20:55 +05:30

11 lines
277 B
Bash

#!/bin/bash
# Log startup
echo "Starting CKAD VNC service at $(date)"
echo "echo 'Use Ctrl + Shift + C for copying and Ctrl + Shift + V for pasting'" >> /home/candidate/.bashrc
# Run in the background - don't block the main container startup
python3 /tmp/agent.py &
exit 0