Mentions légales du service

Skip to content
Snippets Groups Projects
Commit bcd8c40e authored by Philippe Le Brouster's avatar Philippe Le Brouster
Browse files

Imported Upstream version 2.5.2

parent cac9d1a5
Branches
Tags debian-upstream/2.5.2
No related merge requests found
OAR CHANGELOG
=============
version 2.5.x:
version 2.5.2:
--------------
- Bugfix: /var/lib/oar/.bash_oar was empty due to an error in the common
setup script.
......@@ -18,16 +18,21 @@ version 2.5.x:
- Monika: Add the conf max_cores_per_line to have several lines if the number
of cores are too big.
- Minor changes into API:
- added cmd_output into POST /jobs
- API: Added GET /select_all?query=<query> (read only mode)
- added cmd_output into POST /jobs.
- API: Added GET /select_all?query=<query> (read only mode).
- Add the field "array_index" into the jobs table. So that resubmit a job
from an array will have the right array_index anvironment variable.
- oarstat: order the output by job_id.
- Speedup oarnodes
- Fix a spelling error in the oaradmin manpage
- Speedup oarnodes.
- Fix a spelling error in the oaradmin manpage.
- Bugfix #14122 : the oar-node init.d script wasn't executing
start_oar_node/stop_oar_node during the 'restart' action.
- Allow the dash character into the --notify "exec:..." oarsub option.
- Remove some old stuffs from the tarball:
- visualization_interfaces/{tgoar,accounting,poar};
- scheduler/moldable;
- pbs-oar-lib.
- Fix some licence issues.
version 2.5.1:
--------------
......
......@@ -78,7 +78,7 @@ _____________________________
Get the sources::
OAR_VERSION=2.5.1
OAR_VERSION=2.5.2
curl http://oar-ftp.imag.fr/oar/2.5/sources/stable/oar-${OAR_VERSION}.tgz | tar xzvf -
cd oar-${OAR_VERSION}/
......@@ -196,7 +196,7 @@ _____________________________
Get the sources::
OAR_VERSION=2.5.1
OAR_VERSION=2.5.2
curl http://oar-ftp.imag.fr/oar/2.5/sources/stable/oar-${OAR_VERSION}.tgz | tar xzvf -
cd oar-${OAR_VERSION}/
......@@ -485,7 +485,7 @@ _____________________________
Get the sources::
OAR_VERSION=2.5.1
OAR_VERSION=2.5.2
curl http://oar-ftp.imag.fr/oar/2.5/sources/stable/oar-${OAR_VERSION}.tgz | tar xzvf -
cd oar-${OAR_VERSION}/
......@@ -513,7 +513,7 @@ the user nodes.
OAR RESTful API Installation
____________________________
Since the version 2.5.1, OAR offers an API for users and admins interactions. This api
Since the version 2.5.2, OAR offers an API for users and admins interactions. This api
must be installed on a frontend node (with the user module installed).
From the packaging
......@@ -593,7 +593,7 @@ From the sources
Get the sources::
OAR_VERSION=2.5.1
OAR_VERSION=2.5.2
curl http://oar-ftp.imag.fr/oar/2.5/sources/stable/oar-${OAR_VERSION}.tgz | tar xzvf -
cd oar-${OAR_VERSION}/
......@@ -724,7 +724,7 @@ _____________________________
Get the sources::
OAR_VERSION=2.5.1
OAR_VERSION=2.5.2
curl http://oar-ftp.imag.fr/oar/2.5/sources/stable/oar-${OAR_VERSION}.tgz | tar xzvf -
cd oar-${OAR_VERSION}/
......
......@@ -14,8 +14,8 @@ oar_config_frontend:
- write_file:
- /etc/oar/apache2/oar-restful-api-priv.conf
- |
ScriptAlias /oarapi-priv /usr/local/lib/cgi-bin/oarapi/oarapi.cgi
ScriptAlias /oarapi-priv-debug /usr/local/lib/cgi-bin/oarapi/oarapi.cgi
ScriptAlias /oarapi-priv $$oar_prefix_install/lib/cgi-bin/oarapi/oarapi.cgi
ScriptAlias /oarapi-priv-debug $$oar_prefix_install/lib/cgi-bin/oarapi/oarapi.cgi
<Location /oarapi-priv>
Options ExecCGI -MultiViews FollowSymLinks
......
......@@ -4,7 +4,7 @@ oar_deb_install:
- /etc/apt/sources.list
- |
$$oar_deb_repository
- exec_chroot: curl http://oar-ftp.imag.fr/oar/oarmaster.asc | apt-key add -
- exec_chroot: bash -c "curl http://oar-ftp.imag.fr/oar/oarmaster.asc | apt-key add -"
- exec_chroot: apt-get update
- server:
......
package OAR::Version;
require Exporter;
my $OARVersion = "2.5.1+132.g084f2bb";
my $OARVersion = "2.5.2";
my $OARName = "tzuhtzjo:m uy-u:xlaju:n pik";
sub get_version(){
......
......@@ -4,9 +4,9 @@ all: format_checking job_submit resources_creation
usage:
@echo "usage: make < format_checking | job_submit | resources_creation >"
format_checking:
spec format_checking_spec.rb ${SPEC_OPTS}
rspec format_checking_spec.rb ${SPEC_OPTS}
job_submit:
spec job_submit_spec.rb ${SPEC_OPTS}
rspec job_submit_spec.rb ${SPEC_OPTS}
resources_creation:
spec resources_creation_spec.rb ${SPEC_OPTS}
rspec resources_creation_spec.rb ${SPEC_OPTS}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment