From b7f3099ffd5db2a514e1970f721531da0d2f0500 Mon Sep 17 00:00:00 2001 From: Volker Uhrig Date: Mon, 16 Apr 2007 10:21:37 +0000 Subject: - We can't avoid using masses of .desktop files for XDM... integrated - `command` subtituded with $(command) git-svn-id: http://svn.openslx.org/svn/openslx/trunk@902 95ad53e4-c205-0410-b2fa-d234c58c8868 --- virtualization/README | 9 +++++ virtualization/menulist-creator | 67 ++++++++++++++++++----------------- virtualization/templates/runvmware-v2 | 21 ++++++----- 3 files changed, 54 insertions(+), 43 deletions(-) (limited to 'virtualization') diff --git a/virtualization/README b/virtualization/README index cfae07c4..28266e35 100644 --- a/virtualization/README +++ b/virtualization/README @@ -4,6 +4,15 @@ Project not finished yet! Everything not enough testet! Earlier checkin, cause it was requested. +Structure and files: +- menulist-creator: + creates desktop entrys and runvmwares runscripts from + template using xml files +- templates/runvmware-v2: + runvmware-v2 template, needed by menulist-creator +- templates/Vorlage_VMWareImageAdministrator.xml: + example xml file with verbose description + Goal: - better documentation of source and virtualisation - easier source, unneeded parts removed diff --git a/virtualization/menulist-creator b/virtualization/menulist-creator index 531a813c..4351e59b 100755 --- a/virtualization/menulist-creator +++ b/virtualization/menulist-creator @@ -12,6 +12,8 @@ ## ${vmdir}/$image.vbox vbox image file ## ${vmdir}/runscripts/$pool/*.vmware vmware runscript ## ${vmdir}/runscripts/$pool/*.vbox virtualbox runscript +## ${vmdir}/xdmsession/$pool/*.desktop .desktop files for xdm, +## can't avoid masses of them ## ${vmdir}/templates/runvmware-v2 image exec template script ################################################################################ @@ -47,10 +49,10 @@ for xml in *.xml;do # get image name - image=`grep -i "> isnt nice for so much lines - echo "Desktop entry for ${image}" >> ${desktopentry} - echo "[Desktop Entry]" >> ${desktopentry} - echo "X-SuSE-translate=true" >> ${desktopentry} - echo "Encoding=UTF-8" >> ${desktopentry} - echo "Type=XSession" >> ${desktopentry} + echo "Desktop entry for ${image}" >> ${vmdir}/xdmsessions/${i}/${image}.desktop + echo "[Desktop Entry]" >> ${vmdir}/xdmsessions/${i}/${image}.desktop + echo "X-SuSE-translate=true" >> ${vmdir}/xdmsessions/${i}/${image}.desktop + echo "Encoding=UTF-8" >> ${vmdir}/xdmsessions/${i}/${image}.desktop + echo "Type=XSession" >> ${vmdir}/xdmsessions/${i}/${image}.desktop #TODO: Fix path - echo "Exec=/path/to/the/execfile/${image}" >> ${desktopentry} - echo "Name=${short_description}" >> ${desktopentry} - echo "Comment=${comment}" >> ${desktopentry} + echo "Exec=/path/to/the/execfile/${image}" >> ${vmdir}/xdmsessions/${i}/${image}.desktop + echo "Name=${short_description}" >> ${vmdir}/xdmsessions/${i}/${image}.desktop + echo "Comment=${comment}" >> ${vmdir}/xdmsessions/${i}/${image}.desktop #TODO: I dont like SLXGrp as variable herein, why we need it here? - #echo "SLXGrp=${pools}" >> ${desktopentry} + #echo "SLXGrp=${pools}" >> ${vmdir}/xdmsessions/${i}/${image}.desktop #TODO: do we need XDM configuration? -> Chemie pool - #echo "XDM=${xdm}" >> ${desktopentry} - echo "" >> ${desktopentry} + #echo "XDM=${xdm}" >> ${vmdir}/xdmsessions/${i}/${image}.desktop fi -################################################################################ -## TODO: remember default/ chemie/ option (desktopentrys! and runfiles) -## delete old desktop list -## fucking pools/directory hirarchy... test it with running script and find -## that way the error -################################################################################ - # If we have vmware, build execute from template if [ "${vm}" = "vmware" ]; then @@ -204,7 +207,7 @@ for xml in *.xml;do ${templatevmware} \ > ${vmdir}/runscripts/${i}/${image}.runvmware - # if we have virtualbox, can only be vbox cause checked above + # if we have virtualbox, part here can only be vbox cause check above else echo "Currently Virtualbox isn't implented" exit 0 @@ -217,4 +220,4 @@ done # Delete all .utf files, we dont need them anymore -rm -f *.xml.utf +rm -f "*.xml.utf" diff --git a/virtualization/templates/runvmware-v2 b/virtualization/templates/runvmware-v2 index 7cb2cff1..a34c588f 100644 --- a/virtualization/templates/runvmware-v2 +++ b/virtualization/templates/runvmware-v2 @@ -167,8 +167,8 @@ filecheck () -o -r "${diskfile}" >/dev/null 2>&1 ]; then writelog "Vmware Image Problem:\c" writelog "\tThe image you've specified has wrong rights." - writelog "Filecheck says:\t\t`echo ${filecheck} \ - | awk '{print $1" "$3" "$4}'` ${rightsfile}" + writelog "Filecheck says:\t\t$(echo ${filecheck} \ + | awk '{print $1" "$3" "$4}') ${rightsfile}" writelog "Hint:\t\t\tChange rights with: chmod a+r ${rightsfile}\n" exit 1 fi @@ -179,8 +179,8 @@ filecheck () && [ "${np}" = "independent-persistent" ]; then writelog "Vmware Image Problem:\c" writelog "\tThe image you've specified has wrong rights." - writelog "Filecheck says:\t\t`echo ${filecheck} \ - | awk '{print $1" "$3" "$4}'` ${rightsfile}" + writelog "Filecheck says:\t\t$(echo ${filecheck} \ + | awk '{print $1" "$3" "$4}') ${rightsfile}" writelog "Hint:\t\t\tUse nonpersistent-mode or change rights to rw\n" exit 1 fi @@ -364,15 +364,15 @@ EOL ## log script information writelog "##################################################\n" -writelog "# File created by $0 (v.${version})\n# on `date`\n" +writelog "# File created by $0 (v.${version})\n# on $(date)\n" writelog "##################################################\n" -writelog "Starting...`echo ${np} | sed -e \"s/i.*-//g\" \ - | tr [a-z] [A-Z]`-mode\n" +writelog "Starting...$(echo ${np} | sed -e \"s/i.*-//g\" \ + | tr [a-z] [A-Z])-mode\n" ## log disksetup writelog "Directories: \tTmpdir:\t\t${tmpdir}\n\tVMhome:\t\t${vmhome}\n\tTmpdir info:\ - \t`mount | grep -i "/tmp "`\n" + \t$(mount | grep -i "/tmp ")\n" ## configuring MAC address: first four bytes are fixed (00:50:56:0D) the ## last two bytes are taken from the local network adaptor @@ -424,7 +424,7 @@ writelog "finished\nResults:\n\tDiskfile:\t${diskfile} writelog "Linking \"ln -fs ${diskfile} \t${tmpdir}/disk\"...\c" ln -fs ${diskfile} ${tmpdir}/disk -writelog "finished\nResult:\n`ls -l ${tmpdir}/disk`\n" +writelog "finished\nResult:\n$(ls -l ${tmpdir}/disk)\n" # check if image exists, etc... filecheck @@ -467,8 +467,7 @@ writelog "finished\n" ### run vmplayer ############################################################### # ...with the automatically written config file -if [ `which vmplayer 2>/dev/null` ]; then - writelog "\nStarting VMplayer..." +if [ $(which vmplayer 2>/dev/null) ]; then writelog "\nStarting VMplayer..." # run VMplayer writelog "... vmplayer ${vmopt} ${confile}...\n" vmplayer ${vmopt} ${confile} 2>&1 >/dev/null -- cgit v1.2.3-55-g7522