[ARVADOS] updated: 1.1.1-158-gee8558d

Git user git at public.curoverse.com
Tue Dec 5 16:26:56 EST 2017


Summary of changes:
 build/run-build-packages-one-target.sh                       |  9 +++++++++
 build/run-build-packages.sh                                  |  2 +-
 doc/_config.yml                                              |  2 +-
 ...extile.liquid => arvados-sync-groups.html.textile.liquid} | 12 ++++++------
 4 files changed, 17 insertions(+), 8 deletions(-)
 rename doc/user/topics/{arv-sync-groups.html.textile.liquid => arvados-sync-groups.html.textile.liquid} (77%)

       via  ee8558ddd313b037e94f3342cee304f8bd3e5e66 (commit)
       via  ceb1d9dc3bb2f80faf1a005a21ea687108841f40 (commit)
      from  50b36937d0bd921a9c3dc27080e0a3d7591b465a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit ee8558ddd313b037e94f3342cee304f8bd3e5e66
Author: Ward Vandewege <wvandewege at veritasgenetics.com>
Date:   Tue Dec 5 16:26:12 2017 -0500

    Update documentation to the new name of the sync-groups tool.
    
    refs #12018
    
    Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <wvandewege at veritasgenetics.com>

diff --git a/doc/_config.yml b/doc/_config.yml
index e8a899c..7b992d6 100644
--- a/doc/_config.yml
+++ b/doc/_config.yml
@@ -74,7 +74,7 @@ navbar:
       - user/topics/run-command.html.textile.liquid
       - user/reference/job-pipeline-ref.html.textile.liquid
       - user/examples/crunch-examples.html.textile.liquid
-      - user/topics/arv-sync-groups.html.textile.liquid
+      - user/topics/arvados-sync-groups.html.textile.liquid
     - Query the metadata database:
       - user/topics/tutorial-trait-search.html.textile.liquid
     - Arvados License:
diff --git a/doc/user/topics/arv-sync-groups.html.textile.liquid b/doc/user/topics/arvados-sync-groups.html.textile.liquid
similarity index 77%
rename from doc/user/topics/arv-sync-groups.html.textile.liquid
rename to doc/user/topics/arvados-sync-groups.html.textile.liquid
index e2a42c8..c9f74b5 100644
--- a/doc/user/topics/arv-sync-groups.html.textile.liquid
+++ b/doc/user/topics/arvados-sync-groups.html.textile.liquid
@@ -1,7 +1,7 @@
 ---
 layout: default
 navsection: userguide
-title: "Using arv-sync-groups"
+title: "Using arvados-sync-groups"
 ...
 {% comment %}
 Copyright (C) The Arvados Authors. All rights reserved.
@@ -9,9 +9,9 @@ Copyright (C) The Arvados Authors. All rights reserved.
 SPDX-License-Identifier: CC-BY-SA-3.0
 {% endcomment %}
 
-The @arv-sync-groups@ tool allows to synchronize remote groups into Arvados from an external source.
+The @arvados-sync-groups@ tool allows to synchronize remote groups into Arvados from an external source.
 
-h1. Using arv-sync-groups
+h1. Using arvados-sync-groups
 
 This tool reads a CSV (comma-separated values) file having information about external groups and their members. When running it for the first time, it'll create a special group named 'Externally synchronized groups' meant to be the parent of all the remote groups.
 
@@ -22,7 +22,7 @@ Users can be identified by their email address or username: the tool will check
 This tool is designed to be run periodically reading a file created by a remote auth system (ie: LDAP) dump script, applying what's included on the file as the source of truth.
 
 
-bq. NOTE: @arv-sync-groups@ needs to perform several administrative tasks on Arvados, so must be run using a superuser token
+bq. NOTE: @arvados-sync-groups@ needs to perform several administrative tasks on Arvados, so must be run using a superuser token
 
 h2. Options
 
@@ -41,13 +41,13 @@ h2. Examples
 To sync groups using the username to identify every account, reading from some @external_groups.csv@ file, the command should be called as follows:
 
 <notextile>
-<pre><code>~$ <span class="userinput">arv-sync-groups --user-id username /path/to/external_groups.csv </span>
+<pre><code>~$ <span class="userinput">arvados-sync-groups --user-id username /path/to/external_groups.csv </span>
 </code></pre>
 </notextile>
 
 If you want to use a specific preexisting group as the parent of all the remote groups, you can do it this way:
 
 <notextile>
-<pre><code>~$ <span class="userinput">arv-sync-groups --parent-group-uuid <preexisting group UUID> --user-id username /path/to/external_groups.csv </span>
+<pre><code>~$ <span class="userinput">arvados-sync-groups --parent-group-uuid <preexisting group UUID> --user-id username /path/to/external_groups.csv </span>
 </code></pre>
 </notextile>

commit ceb1d9dc3bb2f80faf1a005a21ea687108841f40
Author: Ward Vandewege <wvandewege at veritasgenetics.com>
Date:   Tue Dec 5 16:14:27 2017 -0500

    Small build script fixes.
    
    No issue #
    
    Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <wvandewege at veritasgenetics.com>

diff --git a/build/run-build-packages-one-target.sh b/build/run-build-packages-one-target.sh
index 7f75624..0db3051 100755
--- a/build/run-build-packages-one-target.sh
+++ b/build/run-build-packages-one-target.sh
@@ -97,6 +97,15 @@ set -e
 
 if [[ -n "$test_packages" ]]; then
     if [[ -n "$(find $WORKSPACE/packages/$TARGET -name '*.rpm')" ]] ; then
+	set +e
+	/usr/bin/which createrepo >/dev/null
+	if [[ "$?" != "0" ]]; then
+		echo >&2
+		echo >&2 "Error: please install createrepo. E.g. sudo apt-get install createrepo"
+		echo >&2
+		exit 1
+	fi
+	set -e
         createrepo $WORKSPACE/packages/$TARGET
     fi
 
diff --git a/build/run-build-packages.sh b/build/run-build-packages.sh
index 6beec1d..57e99e8 100755
--- a/build/run-build-packages.sh
+++ b/build/run-build-packages.sh
@@ -340,7 +340,7 @@ fi
 # Go binaries
 cd $WORKSPACE/packages/$TARGET
 export GOPATH=$(mktemp -d)
-go get -v github.com/kardianos/govendor
+go get github.com/kardianos/govendor
 package_go_binary sdk/go/crunchrunner crunchrunner \
     "Crunchrunner executes a command inside a container and uploads the output"
 package_go_binary services/arv-git-httpd arvados-git-httpd \

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list