2025-11-13 03:52:21 +00:00
|
|
|
#!/bin/sh
|
2025-11-13 04:02:30 +00:00
|
|
|
# Wait for models to be downloaded, then delete NSFW models once
|
|
|
|
|
python -u facefusion.py run --config-path /config/facefusion-config.ini &
|
|
|
|
|
PID=0
|
|
|
|
|
|
|
|
|
|
# Wait 60 seconds for initial model downloads
|
|
|
|
|
sleep 60
|
|
|
|
|
|
|
|
|
|
# Delete NSFW models
|
|
|
|
|
rm -f /facefusion/.assets/models/nsfw_*.onnx /facefusion/.assets/models/nsfw_*.hash
|
|
|
|
|
|
|
|
|
|
# Wait for the main process
|
|
|
|
|
wait
|