mirror of
https://github.com/sailor-sh/CK-X.git
synced 2026-07-11 00:29:20 +00:00
11 lines
277 B
Bash
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 |