Fork script from run.sh

This commit is contained in:
Prathamesh Musale 2024-10-24 18:46:35 +05:30
parent 78c8d20876
commit 1d525bcad2
2 changed files with 6 additions and 1 deletions

View File

@ -11,10 +11,11 @@ services:
cerc-webapp-auction-handler:
image: cerc/webapp-deployer-backend:local
restart: always
environment:
- RUN_AUCTIONS_HANDLER=true
volumes:
- srv:/srv
- config:/etc/config:ro
command: "./scripts/handle-auctions.sh"
volumes:
config:

View File

@ -1,5 +1,9 @@
#!/bin/bash
if [ "$RUN_AUCTIONS_HANDLER" = "true" ]; then
exec "./scripts/handle-auctions.sh"
fi
function is_privileged {
ip link add dummy0 type dummy >/dev/null
if [[ $? -eq 0 ]]; then