mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-14 17:01:02 +02:00
13 lines
462 B
Bash
Executable File
13 lines
462 B
Bash
Executable File
#!/bin/bash
|
|
# ----------------------------------------------------------------------------
|
|
# Continuously watches the Apache Karaf log; survives 'karaf clean'
|
|
# ----------------------------------------------------------------------------
|
|
. $ONOS_ROOT/tools/build/envDefaults
|
|
|
|
KARAF_LOG=/tmp/onos-$ONOS_POM_VERSION/apache-karaf-$KARAF_VERSION/data/log/karaf.log
|
|
|
|
while true; do
|
|
[ ! -f $KARAF_LOG ] && sleep 2 && continue
|
|
tail -n 512 -f -F $KARAF_LOG
|
|
done
|