You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2017/04/05 19:21:21 UTC

geode-native git commit: GEODE-2755: Parameterize path to Oracle Support cert/key.

Repository: geode-native
Updated Branches:
  refs/heads/develop aefb2eba5 -> 67e50b759


GEODE-2755: Parameterize path to Oracle Support cert/key.


Project: http://git-wip-us.apache.org/repos/asf/geode-native/repo
Commit: http://git-wip-us.apache.org/repos/asf/geode-native/commit/67e50b75
Tree: http://git-wip-us.apache.org/repos/asf/geode-native/tree/67e50b75
Diff: http://git-wip-us.apache.org/repos/asf/geode-native/diff/67e50b75

Branch: refs/heads/develop
Commit: 67e50b7598ff8678cc1eba93f4280ee5882fd4d5
Parents: aefb2eb
Author: Jacob Barrett <jb...@pivotal.io>
Authored: Wed Apr 5 12:20:25 2017 -0700
Committer: Jacob Barrett <jb...@pivotal.io>
Committed: Wed Apr 5 12:20:25 2017 -0700

----------------------------------------------------------------------
 packer/build-solaris-sparc.json | 14 +++++++++++---
 packer/build-solaris-x86.json   | 13 ++++++++++---
 2 files changed, 21 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode-native/blob/67e50b75/packer/build-solaris-sparc.json
----------------------------------------------------------------------
diff --git a/packer/build-solaris-sparc.json b/packer/build-solaris-sparc.json
index b91391d..34aea96 100644
--- a/packer/build-solaris-sparc.json
+++ b/packer/build-solaris-sparc.json
@@ -2,7 +2,10 @@
   "variables":{
     "image_name":"build-solaris-sparc",
     "openstack_source_image":"7e1e66f1-8256-4e29-a314-ee7f54b2f720",
-    "vmware_source_image_name":"X.vmx"
+    "vmware_source_image_name":"X.vmx",
+    "gemfire_archive":"gemfire.tar.gz",
+    "pkg_oracle_com_certificate":"pkg.oracle.com.certificate.pem",
+    "pkg_oracle_com_key":"pkg.oracle.com.key.pem"
   },
   "builders":[
     {
@@ -22,8 +25,13 @@
   "provisioners":[
     {
       "type":"file",
-      "source":"solaris/files/",
-      "destination":"/"
+      "source":"{{user `pkg_oracle_com_certificate`}}",
+      "destination":"/var/pkg/ssl/pkg.oracle.com.certificate.pem"
+    },
+    {
+      "type":"file",
+      "source":"{{user `pkg_oracle_com_key`}}",
+      "destination":"/var/pkg/ssl/pkg.oracle.com.key.pem"
     },
     {
       "type":"shell",

http://git-wip-us.apache.org/repos/asf/geode-native/blob/67e50b75/packer/build-solaris-x86.json
----------------------------------------------------------------------
diff --git a/packer/build-solaris-x86.json b/packer/build-solaris-x86.json
index 14331c3..69389b8 100644
--- a/packer/build-solaris-x86.json
+++ b/packer/build-solaris-x86.json
@@ -3,7 +3,9 @@
     "image_name":"build-solaris-x86",
     "openstack_source_image":"c0df7ff9-fc8f-4220-ac1f-fd24924dfe7a",
     "vmware_source_image_name":"X.vmx",
-    "gemfire_archive":"gemfire.tar.gz"
+    "gemfire_archive":"gemfire.tar.gz",
+    "pkg_oracle_com_certificate":"pkg.oracle.com.certificate.pem",
+    "pkg_oracle_com_key":"pkg.oracle.com.key.pem"
   },
   "builders":[
     {
@@ -23,8 +25,13 @@
   "provisioners":[
     {
       "type":"file",
-      "source":"solaris/files/",
-      "destination":"/"
+      "source":"{{user `pkg_oracle_com_certificate`}}",
+      "destination":"/var/pkg/ssl/pkg.oracle.com.certificate.pem"
+    },
+    {
+      "type":"file",
+      "source":"{{user `pkg_oracle_com_key`}}",
+      "destination":"/var/pkg/ssl/pkg.oracle.com.key.pem"
     },
     {
       "type":"shell",