You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
353 B
17 lines
353 B
#!/bin/sh
|
|
|
|
# this is the restart process script that is started from YaCy
|
|
# in case that YaCy is terminated with the restart option
|
|
|
|
# navigate into the own directory path
|
|
# the path is handed over upon start of this script
|
|
cd $1
|
|
|
|
# waiting for shutdown
|
|
while [ -e DATA/yacy.running ]; do
|
|
sleep 1
|
|
done
|
|
|
|
# shutdown complete, start up yacy
|
|
./startYACY.sh
|