23 lines
284 B
Bash
23 lines
284 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
export XP_ROOT=/usr/bin/
|
||
|
|
||
|
while true; do
|
||
|
|
||
|
# Check if redis-server starts
|
||
|
|
||
|
result=$(redis-cli ping)
|
||
|
|
||
|
if [ "$result" == "PONG" ]; then
|
||
|
|
||
|
redis-cli FLUSHALL
|
||
|
syncd -p /etc/ssw/AS7512/profile.ini -N
|
||
|
break
|
||
|
|
||
|
fi
|
||
|
|
||
|
sleep 1
|
||
|
|
||
|
done
|
||
|
|