mirror of
https://github.com/krkn-chaos/krkn.git
synced 2026-04-02 08:46:55 +00:00
9 lines
152 B
Bash
9 lines
152 B
Bash
#!/bin/bash
|
|
set -e
|
|
# Run SSH setup
|
|
./containers/setup-ssh.sh
|
|
# Change to kraken directory
|
|
|
|
# Execute the main command
|
|
exec python3.9 run_kraken.py "$@"
|