/usr/bin/condor_submit_makeflow is in coop-computing-tools 4.0-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #!/bin/sh
if [ X$1 = X ]
then
echo "use: condor_submit_makeflow [makeflowoptions] <makeflowfile>"
exit 1
fi
makeflow=`which makeflow`
if [ $? != 0 ]
then
echo "$0: Sorry, I cannot find makeflow in your PATH."
exit 1
fi
condor_submit << EOF
universe = local
cmd = $makeflow
arguments = -T condor -l makeflow.\$(CLUSTER).makeflowlog -L makeflow.\$(CLUSTER).condorlog $@
output = makeflow.\$(CLUSTER).output
error = makeflow.\$(CLUSTER).error
log = makeflow.\$(CLUSTER).condorlog
getenv = true
queue
EOF
|