| #!/bin/bash |
| set -e |
|
|
| |
|
|
| |
| |
| |
|
|
|
|
| |
| setup_ssh() { |
| if [[ $PUBLIC_KEY ]]; then |
| echo "Setting up SSH..." |
| mkdir -p ~/.ssh |
| echo "$PUBLIC_KEY" >> ~/.ssh/authorized_keys |
| chmod 700 -R ~/.ssh |
|
|
| if [ ! -f /etc/ssh/ssh_host_rsa_key ]; then |
| ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -q -N '' |
| echo "RSA key fingerprint:" |
| ssh-keygen -lf /etc/ssh/ssh_host_rsa_key.pub |
| fi |
|
|
| if [ ! -f /etc/ssh/ssh_host_dsa_key ]; then |
| ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -q -N '' |
| echo "DSA key fingerprint:" |
| ssh-keygen -lf /etc/ssh/ssh_host_dsa_key.pub |
| fi |
|
|
| if [ ! -f /etc/ssh/ssh_host_ecdsa_key ]; then |
| ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -q -N '' |
| echo "ECDSA key fingerprint:" |
| ssh-keygen -lf /etc/ssh/ssh_host_ecdsa_key.pub |
| fi |
|
|
| if [ ! -f /etc/ssh/ssh_host_ed25519_key ]; then |
| ssh-keygen -t ed25519 -f /etc/ssh/ssh_host_ed25519_key -q -N '' |
| echo "ED25519 key fingerprint:" |
| ssh-keygen -lf /etc/ssh/ssh_host_ed25519_key.pub |
| fi |
|
|
| service ssh start |
|
|
| echo "SSH host keys:" |
| for key in /etc/ssh/*.pub; do |
| echo "Key: $key" |
| ssh-keygen -lf $key |
| done |
| fi |
| } |
|
|
| |
| export_env_vars() { |
| echo "Exporting environment variables..." |
| printenv | grep -E '^RUNPOD_|^PATH=|^_=' | awk -F = '{ print "export " $1 "=\"" $2 "\"" }' >> /etc/rp_environment |
| echo 'source /etc/rp_environment' >> ~/.bashrc |
| } |
|
|
| |
| |
| |
|
|
|
|
| echo "Pod Started" |
|
|
| setup_ssh |
| export_env_vars |
| echo "Starting AI Toolkit UI..." |
| cd /app/ai-toolkit/ui && npm run start |