8 lines
132 B
Bash
Executable File
8 lines
132 B
Bash
Executable File
#!/bin/sh
|
|
cd /root/yacy/DATA/RELEASE/
|
|
while [ -f ../yacy.running ]; do
|
|
sleep 1
|
|
done
|
|
cd /root/yacy
|
|
nohup ./startYACY.sh > /dev/null
|