This website works better with JavaScript
Home
Explore
Help
Sign In
iru
/
mongod
Watch
5
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
af96d4ce34
Branches
Tags
master
mongod
/
run.sh
run.sh
109 B
History
Raw
1
2
3
4
5
6
7
8
#!/bin/sh
trap cleanup 0 1 2 3 6 15
cleanup()
{
pkill -2 mongod
}
exec "/usr/bin/mongod" "$@" &
wait