This file is indexed.

/usr/bin/sge-disable-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="Limit the SGE global configuration to users in ACL \`testing' to
prevent users submitting further jobs.  (See also sge-enable-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/none/testing
wq
EOF