Compare commits

..

4 Commits

Author SHA1 Message Date
clrbuilder ace60d849e Update packages file for version 22530
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-05-21 13:02:36 +00:00
clrbuilder a2759eca40 Update packages file for version 22520
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-05-20 14:28:39 +00:00
clrbuilder 7d0977c785 Update packages file for version 22450
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2018-05-17 02:48:06 +00:00
Patrick McCarty 9184a2fd62 user-setup: support abs/rel paths for cert options
Support both absolute and relative paths for the cert options, instead
of relative paths only, by using realpath(1) to resolve the arguments.

(Note that the script cannot reference the path arguments verbatim
because much of the script operates in the workspace's toplevel
directory, which is a different location than where the script is
invoked. In that situation, relative paths would not resolve.)

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2018-05-15 14:50:09 -07:00
2 changed files with 12 additions and 3 deletions
+9
View File
@@ -225,6 +225,7 @@ R-formatR
R-fpc
R-futile.logger
R-futile.options
R-future
R-gam
R-gamm4
R-gbm
@@ -239,6 +240,7 @@ R-ggplot2movies
R-ggridges
R-git2r
R-glmnet
R-globals
R-glue
R-gmodels
R-gmp
@@ -277,6 +279,7 @@ R-labelled
R-laeken
R-lambda.r
R-lars
R-later
R-latticeExtra
R-lava
R-lazyeval
@@ -285,6 +288,7 @@ R-leaflet
R-leaps
R-lfe
R-libcoin
R-listenv
R-lle
R-lme4
R-lmtest
@@ -374,6 +378,7 @@ R-processx
R-prodlim
R-profileModel
R-progress
R-promises
R-proto
R-proxy
R-pryr
@@ -778,6 +783,7 @@ diffoscope
diffstat
diffutils
dist-pam-configs
distro
dmenu
dmidecode
dnf
@@ -907,6 +913,7 @@ glib
glib-networking
glibc
glibmm
glmark2
global
glog
glslang
@@ -1285,6 +1292,7 @@ libxslt
libyami
libyami-utils
libzip
libzmq
linecache2
links
linux
@@ -1857,6 +1865,7 @@ testresources
testscenarios
testtools
texinfo
texlive
tflearn
thermal_daemon
thin-provisioning-tools
+3 -3
View File
@@ -36,15 +36,15 @@ while [ $# -gt 0 ]; do
;;
"--client-cert"|"-k")
shift
PEM="$PWD/$1"
PEM="$(realpath $1)"
;;
"--server-ca"|"-s")
shift
SERVERCA="$PWD/$1"
SERVERCA="$(realpath $1)"
;;
"--client-ca"|"-c")
shift
CLIENTCA="$PWD/$1"
CLIENTCA="$(realpath $1)"
;;
"--jobs"|"-j")
if echo "$2" | grep -qx "[1-9][0-9]*"; then