diff options
-rwxr-xr-x | kvmx | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1136,6 +1136,11 @@ function kvmx_log { logs="$logs $XDMCPLOG" fi + if [ -z "$logs" ]; then + echo "$BASENAME: $VM: all logs are empty" + exit + fi + tail -F $logs } |