/usr/bin/sge-enable-submits is in gridengine-common 8.1.9+dfsg-7build1.
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 | #!/bin/sh
# Copyright (c) Dave Love <d.love@liverpool.ac.uk>, 2009
# Licence: FreeBSD <http://www.gnu.org/licenses/license-list.html#FreeBSD>
usage () {
msg="Unlimit the SGE global configuration to allow users to submit
jobs again. (See also sge-disable-submits.)"
if [ $# -eq 1 -a $1 != 0 ]; then echo "$msg" 1>&2
else echo "$msg"; fi
exit $?
}
case $1 in
'') ;;
--help) usage 0 ;;
*) usage 1 ;;
esac
EDITOR=ed qconf -mconf <<EOF
/^user_lists/s/testing/none
wq
EOF
|