mirror of
https://github.com/openappsec/attachment.git
synced 2025-06-28 16:41:03 +03:00
10 lines
262 B
Bash
Executable File
10 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Start certificate manager in the background
|
|
# Start the webhook server
|
|
while [ true ]; do
|
|
echo "Starting Webhook Server"
|
|
python3 webhook_server.py
|
|
echo "Webhook Server crashed, restarting..."
|
|
sleep 5 # Pause before restarting
|
|
done |