search for: hdfile

Displaying 3 results from an estimated 3 matches for "hdfile".

Did you mean: dfile
2009 Jul 21
1
[PATCH node-image] Moved all temporary files into a single work directory to clean up.
...;" local network=$NETWORK - local xmlfile=$(mktemp) + local xmlfile=$WORKDIR/$nodename-$ifacename.xml debug "start_networking ()" for var in nodename ifacename use_dhcp start_dnsmasq workdir network xmlfile; do @@ -363,7 +364,7 @@ configure_node () { local hdfile="" local cdfile=$5 local args=$6 - local nodefile=$(mktemp) + local nodefile=$WORKDIR/$nodename.xml if [ -z "${boot_device}" ]; then boot_device="hd"; fi if [ -z "${memory}" ]; then memory="524288"; fi @@ -375,7 +376,7 @@...
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...3 - the memory size in kb (def. 524288) +# $4 - hard disk size (if blank then no hard disk) +# $5 - the cd drive image file (if blank then no cd drive) +# $6 - option arguments +configure_node () { + local nodename=$1 + local boot_device=$2 + local memory=$3 + local hdsize=$4 + local hdfile="" + local cdfile=$5 + local args=$6 + local nodefile=$WORKDIR/$nodename.xml + + if [ -z "${boot_device}" ]; then boot_device="hd"; fi + if [ -z "${memory}" ]; then memory="524288"; fi + + debug "configure_node ()" + f...
2003 Jun 24
0
R help output in separate window
...equivalent method in other OSs) similar to the following: #!/bin/sh xterm -T $1 -e less $1 which I call "startless", and store it in a file in the user's path. Then insert the following lines in something like the .Rprofile file: options(pager="startless") source("HDfile") where HDfile is the path and file name of the following file (for me, "/home/jim/R/helpdisp.R"): # retrieves the R help filename corresponding to a particular # type of display. Defaults to "help" (sort-of-text) and will # currently cope with HTML and any other display...