summaryrefslogtreecommitdiffstats
path: root/core/modules/vbox-src
diff options
context:
space:
mode:
authorJonathan Bauer2018-04-16 11:30:46 +0200
committerJonathan Bauer2018-04-16 11:30:46 +0200
commit71e4aadbb3100911c6fbae1c19df7109b91d2279 (patch)
tree38beaca872d27c6801953458e26921e2bda41e6b /core/modules/vbox-src
parent[vbox-src] error handling for xmlstarlet wrappers (diff)
downloadmltk-71e4aadbb3100911c6fbae1c19df7109b91d2279.tar.gz
mltk-71e4aadbb3100911c6fbae1c19df7109b91d2279.tar.xz
mltk-71e4aadbb3100911c6fbae1c19df7109b91d2279.zip
[vbox-src] cleanup vbox logging include
Diffstat (limited to 'core/modules/vbox-src')
-rwxr-xr-xcore/modules/vbox-src/data/opt/openslx/vmchooser/plugins/virtualbox/includes/log_config_summary.inc14
1 files changed, 5 insertions, 9 deletions
diff --git a/core/modules/vbox-src/data/opt/openslx/vmchooser/plugins/virtualbox/includes/log_config_summary.inc b/core/modules/vbox-src/data/opt/openslx/vmchooser/plugins/virtualbox/includes/log_config_summary.inc
index fbff0551..408259a1 100755
--- a/core/modules/vbox-src/data/opt/openslx/vmchooser/plugins/virtualbox/includes/log_config_summary.inc
+++ b/core/modules/vbox-src/data/opt/openslx/vmchooser/plugins/virtualbox/includes/log_config_summary.inc
@@ -2,28 +2,24 @@
# Include: log a summary of the configuration state for this machine #
################################################################################
log_config_summary() {
- writelog "Diskimage:"
+ writelog "Virtual disk image:"
writelog "\tDisk file:\t\t$VBOX_HDD_LINK"
writelog "\tDisk type:\t\tVDI"
writelog "\tGuest OS:\t\t$VM_OS_TYPE"
writelog "\tMachine UUID:\t\t$MACHINE_UUID"
writelog "\tDisk UUID:\t\t$VBOX_HDD_UUID"
writelog "Virtual Hardware:"
- writelog "\tCPU cores:\t\t${CPU_CORES}\c"
- writelog ""
+ writelog "\tCPU cores:\t\t${CPU_CORES}"
[ "$HW_KVM" = "ENABLED" ] && writelog "\t(VT enabled CPU)"
writelog "\tGuest RAM:\t\t${VM_MEM} MB"
# echo nur wenn HOST_MEM_REMAINING gesetzt
[ -n "${HOST_MEM_REMAINING}" ] && writelog "\tHost RAM:\t\t${HOST_MEM_REMAINING} MB"
writelog "\tMAC address:\t\t$VM_MAC_ADDR"
- writelog "\tNetwork card:\t\t${vb_network_card}"
- writelog "\tNetwork kind:\t\t${network_kind}"
- writelog "\tBooting from:\t\t${boot}\c"
writelog ""
writelog "\tCD-ROM1:\t\t${CDROM0}"
- writelog "\tFloppy_A:\t\t${floppy0}"
- writelog "\tFloppy_B:\t\t${floppy1}"
- writelog "\tShared Folders '${sharename}':\t${sharepath}"
+ writelog "\tFloppy A:\t\t${FLOPPY0}"
+ writelog "\tFloppy B:\t\t${SLX_FLOPPY_IMG}"
+ writelog "\tShared Folders:\t\t'${HOME_SHARE_NAME}' -> '${HOME_SHARE_PATH}'"
}
call_post_source log_config_summary