Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (3)
......@@ -10,7 +10,7 @@ If you run the program with no args you will get brief usage information:
usage: check_utilisation.py running|finished|all [-h] [-u USER] [-e EMAIL]
check_utilisation.py: error: the following arguments are required: state
Running with the `-h` option will give more detailed help: `$ ./check_utilisation.py -h`
Running with the `-h` option will give more detailed help: `$ ./check_utilisation.py -h`
You need to specify a "job state" to query; either "running", "finished" or "all"
like this:
......
......@@ -147,6 +147,7 @@ ATTR_DefaultChunk = _pbs.ATTR_DefaultChunk
ATTR_X11_cookie = _pbs.ATTR_X11_cookie
ATTR_X11_port = _pbs.ATTR_X11_port
ATTR_GUI = _pbs.ATTR_GUI
ATTR_max_run_subjobs = _pbs.ATTR_max_run_subjobs
ATTR_resv_standing = _pbs.ATTR_resv_standing
ATTR_resv_count = _pbs.ATTR_resv_count
ATTR_resv_idx = _pbs.ATTR_resv_idx
......@@ -226,6 +227,7 @@ ATTR_job_kill_delay = _pbs.ATTR_job_kill_delay
ATTR_topjob_ineligible = _pbs.ATTR_topjob_ineligible
ATTR_submit_host = _pbs.ATTR_submit_host
ATTR_cred_id = _pbs.ATTR_cred_id
ATTR_security_context = _pbs.ATTR_security_context
ATTR_cred_validity = _pbs.ATTR_cred_validity
ATTR_history_timestamp = _pbs.ATTR_history_timestamp
ATTR_create_resv_from_job = _pbs.ATTR_create_resv_from_job
......@@ -475,7 +477,7 @@ DFLT = _pbs.DFLT
SHUT_IMMEDIATE = _pbs.SHUT_IMMEDIATE
SHUT_DELAY = _pbs.SHUT_DELAY
SHUT_QUICK = _pbs.SHUT_QUICK
FORCEDEL = _pbs.FORCEDEL
FORCE = _pbs.FORCE
NOMAIL = _pbs.NOMAIL
SUPPRESS_EMAIL = _pbs.SUPPRESS_EMAIL
DELETEHISTORY = _pbs.DELETEHISTORY
......
......@@ -36,7 +36,7 @@ if [ $? -ne 0 ]; then
fi
# Running gcc creates _pbs.so
gcc -shared -fPIC -I$PYTHON_INCL -I$PBS_EXEC/include pbs_wrap.c $PBS_EXEC/lib/libpbs.a \
gcc -shared -fPIC -I$PYTHON_INCL -I$PBS_EXEC/include pbs_wrap.c $PBS_EXEC/lib/libpbs.so \
-o _pbs.so -L/lib -lcrypto -lssl
# It does not need to be executable.
......