This repository has been archived on 2024-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
2023-09-27 14:59:33 -06:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
mkdir -p /storage/vllm/
|
|
|
|
chown -R apiserver:apiserver /storage/vllm
|
|
|
|
touch /storage/vllm/cmd.txt
|
2023-09-28 17:02:45 -06:00
|
|
|
touch /storage/vllm/rathole-client.toml
|
2023-09-27 14:59:33 -06:00
|
|
|
|
2023-09-28 17:02:45 -06:00
|
|
|
if [ -f /storage/vllm/ssh ]; then
|
|
|
|
cp -r /storage/vllm/ssh /root/.ssh
|
|
|
|
echo "Copied ssh from /storage"
|
|
|
|
fi
|
|
|
|
|
|
|
|
/usr/bin/supervisord
|