couchdb/SOURCES/usr-bin-couchdb

13 lines
139 B
Text
Raw Normal View History

2025-01-27 18:40:38 +03:00
#!/bin/bash
clean_exit() {
kill -TERM $child 2>/dev/null
}
trap clean_exit EXIT
/opt/couchdb/bin/couchdb "$@" &
child=$!
wait $child