tweek job priorities
diff --git a/releng.control/ant_high_priority_galileo.sh b/releng.control/ant_high_priority_galileo.sh
new file mode 100644
index 0000000..cb97923
--- /dev/null
+++ b/releng.control/ant_high_priority_galileo.sh
@@ -0,0 +1,26 @@
+#!/usr/bin/env bash
+#
+# remember to leave no slashes on commonVariations in source command,
+# so that users path is used to find it (first). But, path on
+# commonComputedVariables means we expect to execute only our
+# version
+
+if [ -z $BUILD_INITIALIZED ]
+then
+# if releng_control not set, we assume we are already in releng_control directory
+ if [ -z $RELENG_CONTROL ]
+ then
+ RELENG_CONROL=`pwd`
+ fi
+ pushd .
+ cd ${RELENG_CONTROL}
+ source commonVariations.shsource
+ source ${RELENG_CONTROL}/commonComputedVariables.shsource
+ popd
+fi
+
+# directory under releng for maps/dependencies.properties
+export DEP_DIR=/galileo
+echo "DEP_DIR: " $DEP_DIR
+echo "Running ant at priority " $JOB_NOT_NICE
+exec nice --adjustment $JOB_NOT_NICE "${RELENG_CONTROL}/ant.sh" "$@"