cd /home/user/MD/TaskServer/Tasks/172.16.0.39-32000-task158390
package require starkit
source /home/user/MD/bin/generic/TaskServer.kit
source /home/user/MD/bin/generic/tcllib.kit
lappend auto_path /home/user/MD/TaskServer/Tools
namespace eval ::task {variable id 158390.172.16.0.39-32000}
namespace eval ::JobServer {variable JobServer http://172.16.0.39:32000}
namespace eval ::TaskServer {variable InstallDir /home/user/MD}
array set Options {finishedtasks {19254.huanan-1-32000 19249.huanan-1-32000 19248.huanan-1-32000 19251.huanan-1-32000 19253.huanan-1-32000 19258.huanan-1-32000 19250.huanan-1-32000 19255.huanan-1-32000 19257.huanan-1-32000 19259.huanan-1-32000 19256.huanan-1-32000 19252.huanan-1-32000} -remote 0 -ntasks 1 -id http://intel-9:23000/taskserver -port 23000 wd /home/user/MD/TaskServer -batch_queue {} -delay 0 interval 60 -core_limit_type 0 -machines {} -ruser {} -rdir {} -css {SmallFontSizePixels 14 FontFamily {"Palatino Linotype", "Book Antiqua", "Palatino", "Georgia", "serif"} BannerHighlightColor #A0B01E AdminBannerColor #0A4A54 BackgroundColor #FFFFFF AdminHighlightColor #3B8993 SmallestFontSizePixels 12 BannerColor #202020 FontColor #202020 TableColor #202020 TaskServerBannerColor #3D2527 FontSizePixels 16} InstallDir /home/user/MD tasks 40539.172.16.0.64-32000 -control_type 0 -path {} -queue_type direct -batch_project {} -usehttps 0 -displayloglevel notice -rhost {} -rwdir {} -nprocessors 64 -webmaster Support@MaterialsDesign.com -type {} -loglevel notice}
set Options(taskdir) /home/user/MD/TaskServer/Tasks/172.16.0.39-32000-task158390
set Options(-nprocessors) 10
#
# The MedeA environment
#
set ::MedeA::platform Linux-x86_64
set ::MDPriv {logfile /home/user/MD/TaskServer/logs/intel-9.log}
array set ::MedeA::Directory {bin /home/user/MD/bin/Linux-x86_64 TaskServer /home/user/MD/bin/generic/TaskServer.kit user_medea /home/user/MedeA tcllib /home/user/MD/bin/generic/tcllib.kit wd /home/user/MD/TaskServer generic /home/user/MD/bin/generic flowcharts /home/user/MD/data/Flowcharts.kit tmp /home/user/MedeA/tmp data /home/user/MD/data medealib /home/user/MD/bin/generic/MedeALib.kit binarylib /home/user/MD/bin/Linux-x86_64/Linux-x86_64.kit MedeA /home/user/MedeA root /home/user/MD platform /home/user/MD/bin/Linux-x86_64/Linux-x86_64.kit realbin /home/user/MD/bin/Linux-x86_64 binarykit /home/user/MD/bin/Linux-x86_64/Linux-x86_64.kit forcefields /home/user/MD/data/Forcefields.kit user /home/user}
namespace eval job {
	variable id 2240
	variable url http://172.16.0.39:32000
	variable dir /home/user/MD/Jobs/dir2000/2240
	variable useSecurity 0
}

        if {[catch {
            proc listFiles {} {
                puts "\nFiles:"
                foreach file [lsort [glob -nocomplain *]] {
                    if {[catch {file mtime $file} T]} {
                        set T "--- -- --:--:--"
                    } else {
                        set T [clock format $T -format "%b %d %T"]
                    }
                    puts [format "%15d %s %s" [file size $file] $T $file]
                }
                puts ""
            }

            listFiles
            package require Gaussian
            puts "Starting Gaussian at [clock format [clock seconds]]"

            ::Gaussian::execute -out Gaussian.out

            puts "Finished Gaussian at [clock format [clock seconds]]"
            listFiles
        } msg]} {
            puts "Error executing Gaussian: $msg\n\n$::errorInfo"
            return
        }
    
	    # Temporarily delete WAVECAR until Job server changes propagate through
	    if {[file exists VASP_WAVECAR.txt] && [file exists WAVECAR]} {
		file delete -force WAVECAR
	    }
	
exit