13 lines
169 B
Bash
13 lines
169 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd /home/snuser/sn_neu
|
||
|
|
||
|
# create resources
|
||
|
ulimit -c unlimited
|
||
|
ulimit -n 2048
|
||
|
|
||
|
# kill old stuff
|
||
|
kill -9 `pidof server`
|
||
|
kill -9 `pidof -x restarter_proxy.sh`
|
||
|
|