diff options
-rwxr-xr-x | kvmx | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -410,6 +410,13 @@ function kvmx_status { fi } +# Print guest log +function kvmx_log { + if [ -e "$LOGFILE" ]; then + cat $LOGFILE + fi +} + # Dispatch if type kvmx_$ACTION 2> /dev/null | grep -q 'function'; then kvmx_initialize |