[rubygem-openshift-origin-node] Update to lastest stable release

tdawson tdawson at fedoraproject.org
Tue Feb 18 14:22:13 UTC 2014


commit 524d2c77b26eb3db365c6c765e62e3f52ae814b8
Author: Troy Dawson <tdawson at redhat.com>
Date:   Tue Feb 18 08:22:56 2014 -0600

    Update to lastest stable release

 .gitignore                         |    1 +
 rubygem-openshift-origin-node.spec | 1044 ++++++++++++++++++++++++++++++++----
 sources                            |    2 +-
 3 files changed, 953 insertions(+), 94 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 9b66db6..33288e4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@
 /openshift-origin-node-1.5.17.gem
 /openshift-origin-node-1.9.15.gem
 /openshift-origin-node-1.13.0.1.gem
+/openshift-origin-node-1.18.0.1.gem
diff --git a/rubygem-openshift-origin-node.spec b/rubygem-openshift-origin-node.spec
index b89c1b2..a231239 100644
--- a/rubygem-openshift-origin-node.spec
+++ b/rubygem-openshift-origin-node.spec
@@ -3,19 +3,15 @@
 
 %global gem_name openshift-origin-node
 %global rubyabi 1.9.1
-
 %global appdir %{_var}/lib/openshift
 %global apprundir %{_var}/run/openshift
+%global openshift_lib %{_usr}/lib/openshift
+
 
-%if 0%{?fedora} >= 18
-    %global httxt2dbm /usr/bin/httxt2dbm
-%else
-    %global httxt2dbm /usr/sbin/httxt2dbm
-%endif
 
 Summary:       Cloud Development Node
 Name:          rubygem-%{gem_name}
-Version:       1.13.0.1
+Version:       1.18.0.1
 Release:       1%{?dist}
 Group:         Development/Languages
 License:       ASL 2.0
@@ -29,17 +25,15 @@ Requires:      %{?scl:%scl_prefix}ruby(abi) >= %{rubyabi}
 Requires:      %{?scl:%scl_prefix}rubygems
 Requires:      %{?scl:%scl_prefix}rubygem(commander)
 Requires:      %{?scl:%scl_prefix}rubygem(json)
-Requires:      %{?scl:%scl_prefix}rubygem(mocha)
 Requires:      %{?scl:%scl_prefix}rubygem(open4)
+Requires:      %{?scl:%scl_prefix}rubygem(parallel)
 Requires:      %{?scl:%scl_prefix}rubygem(parseconfig)
 Requires:      %{?scl:%scl_prefix}rubygem(rest-client)
-Requires:      %{?scl:%scl_prefix}rubygem(rspec)
 Requires:      %{?scl:%scl_prefix}rubygem(safe_yaml)
 Requires:      %{?scl:%scl_prefix}ruby(selinux)
 Requires:      cronie
 Requires:      crontabs
 Requires:      git
-Requires:      httpd
 Requires:      iproute
 Requires:      libcgroup-pam
 Requires:      libselinux-python
@@ -51,17 +45,13 @@ Requires:      pam_openshift
 Requires:      python
 Requires:      quota
 Requires:      rubygem(openshift-origin-common)
+Requires:      unixODBC
+Requires:      unixODBC-devel
 %if 0%{?fedora}%{?rhel} <= 6
 Requires:      libcgroup
 %else
 Requires:      libcgroup-tools
 %endif
-%if 0%{?fedora} >= 18
-Requires:      httpd-tools
-BuildRequires: httpd-tools
-%else
-BuildRequires: httpd
-%endif
 %if 0%{?fedora} >= 19
 BuildRequires: %{?scl:%scl_prefix}ruby(release) >= %{rubyabi}
 %else
@@ -81,6 +71,9 @@ gem unpack %{SOURCE0}
 gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec
 
 %build
+# Remove dependencies not needed at runtime
+sed -i -e '/NON-RUNTIME BEGIN/,/NON-RUNTIME END/d' Gemfile
+
 mkdir -p .%{gem_dir}
 # Create the gem as gem install only works on a gem file
 gem build %{gem_name}.gemspec
@@ -103,25 +96,8 @@ cp -a ./%{gem_dir}/* %{buildroot}%{gem_dir}/
 
 mkdir -p %{buildroot}/usr/bin
 mkdir -p %{buildroot}/usr/sbin
-mkdir -p %{buildroot}/etc/httpd/conf.d
-mkdir -p %{buildroot}%{appdir}/.httpd.d
 mkdir -p %{buildroot}%{appdir}/.tc_user_dir
-ln -sf %{appdir}/.httpd.d %{buildroot}/etc/httpd/conf.d/openshift
-
-# Create empty route database files
-for map in nodes aliases idler sts
-do
-    mapf="%{buildroot}%{appdir}/.httpd.d/${map}"
-    touch "${mapf}.txt"
-    %{httxt2dbm} -f DB -i "${mapf}.txt" -o "${mapf}.db"
-done
-
-for map in routes geardb
-do
-    mapf="%{buildroot}%{appdir}/.httpd.d/${map}"
-    echo '{}' > "${mapf}.json"
-done
-
+mkdir -p %{buildroot}%{_var}/log/openshift/node
 
 # Move the gem configs to the standard filesystem location
 mkdir -p %{buildroot}/etc/openshift
@@ -134,10 +110,10 @@ mv %{buildroot}%{gem_instdir}/misc/libexec/lib/quota_attrs.sh %{buildroot}/usr/l
 mv %{buildroot}%{gem_instdir}/misc/libexec/lib/archive_git_submodules.sh %{buildroot}/usr/libexec/openshift/lib
 
 # Install the cartridge SDK files and environment variables for each
-mkdir -p %{buildroot}/usr/lib/openshift/cartridge_sdk
-mv %{buildroot}%{gem_instdir}/misc/usr/lib/cartridge_sdk/* %{buildroot}/usr/lib/openshift/cartridge_sdk
-echo '/usr/lib/openshift/cartridge_sdk/bash/sdk' > %{buildroot}/etc/openshift/env/OPENSHIFT_CARTRIDGE_SDK_BASH
-echo '/usr/lib/openshift/cartridge_sdk/ruby/sdk.rb' > %{buildroot}/etc/openshift/env/OPENSHIFT_CARTRIDGE_SDK_RUBY
+mkdir -p %{buildroot}%{openshift_lib}/cartridge_sdk
+mv %{buildroot}%{gem_instdir}/misc/usr/lib/cartridge_sdk/* %{buildroot}%{openshift_lib}/cartridge_sdk
+echo '%{openshift_lib}/cartridge_sdk/bash/sdk' > %{buildroot}/etc/openshift/env/OPENSHIFT_CARTRIDGE_SDK_BASH
+echo '%{openshift_lib}/cartridge_sdk/ruby/sdk.rb' > %{buildroot}/etc/openshift/env/OPENSHIFT_CARTRIDGE_SDK_RUBY
 
 #move the shell binaries into proper location
 mv %{buildroot}%{gem_instdir}/misc/bin/* %{buildroot}/usr/bin/
@@ -151,31 +127,17 @@ mv %{buildroot}%{gem_instdir}/misc/etc/openshift-run.conf %{buildroot}/etc/tmpfi
 mkdir -p %{buildroot}%{apprundir}
 
 # place an example file.  It _must_ be placed in the gem_docdir because of how
-# the %doc directive works and how we're using it in the files section.
+# the doc directive works and how we're using it in the files section.
 mv %{buildroot}%{gem_instdir}/misc/doc/cgconfig.conf %{buildroot}%{gem_docdir}/cgconfig.conf
 
-%if 0%{?fedora} >= 18
-  #patch for apache 2.4
-  sed -i 's/include /IncludeOptional /g' httpd/000001_openshift_origin_node.conf
-  sed -i 's/^RewriteLog/#RewriteLog/g' httpd/openshift_route.include
-  sed -i 's/^RewriteLogLevel/#RewriteLogLevel/g' httpd/openshift_route.include
-  sed -i 's/^#LogLevel/LogLevel/g' httpd/openshift_route.include
-%endif
-mv httpd/000001_openshift_origin_node.conf %{buildroot}/etc/httpd/conf.d/
-mv httpd/000001_openshift_origin_node_servername.conf %{buildroot}/etc/httpd/conf.d/
-mv httpd/openshift_route.include %{buildroot}/etc/httpd/conf.d/
-
-# http 2.4.2 option change
-%if 0%{?fedora} >= 18
-sed -i 's/^include/IncludeOptional/' %{buildroot}%{_sysconfdir}/httpd/conf.d/000001_openshift_origin_node.conf
-%endif
-
 %if 0%{?fedora}%{?rhel} <= 6
 mkdir -p %{buildroot}/etc/rc.d/init.d/
 cp %{buildroot}%{gem_instdir}/misc/init/openshift-tc %{buildroot}/etc/rc.d/init.d/
+cp %{buildroot}%{gem_instdir}/misc/init/openshift-iptables-port-proxy %{buildroot}/etc/rc.d/init.d/
 %else
 mkdir -p %{buildroot}/etc/systemd/system
 mv %{buildroot}%{gem_instdir}/misc/services/openshift-tc.service %{buildroot}/etc/systemd/system/openshift-tc.service
+mv %{buildroot}%{gem_instdir}/misc/services/openshift-iptables-port-proxy.service %{buildroot}/etc/systemd/system/openshift-iptables-port-proxy.service
 %endif
 
 # Cleanup
@@ -191,16 +153,16 @@ mkdir -p %{buildroot}/etc/cron.hourly
 mkdir -p %{buildroot}/etc/cron.daily
 mkdir -p %{buildroot}/etc/cron.weekly
 mkdir -p %{buildroot}/etc/cron.monthly
-mkdir -p %{buildroot}/usr/lib/openshift/node/jobs
+mkdir -p %{buildroot}%{openshift_lib}/node/jobs
 
-mv %{buildroot}%{gem_instdir}/jobs/* %{buildroot}/usr/lib/openshift/node/jobs/
-ln -s /usr/lib/openshift/node/jobs/1minutely %{buildroot}/etc/cron.d/
-ln -s /usr/lib/openshift/node/jobs/openshift-origin-cron-minutely %{buildroot}/etc/cron.minutely/
-ln -s /usr/lib/openshift/node/jobs/openshift-origin-cron-hourly %{buildroot}/etc/cron.hourly/
-ln -s /usr/lib/openshift/node/jobs/openshift-origin-cron-daily %{buildroot}/etc/cron.daily/
-ln -s /usr/lib/openshift/node/jobs/openshift-origin-cron-weekly %{buildroot}/etc/cron.weekly/
-ln -s /usr/lib/openshift/node/jobs/openshift-origin-cron-monthly %{buildroot}/etc/cron.monthly/
-ln -s /usr/lib/openshift/node/jobs/openshift-origin-stale-lockfiles %{buildroot}/etc/cron.daily/
+mv %{buildroot}%{gem_instdir}/jobs/* %{buildroot}%{openshift_lib}/node/jobs/
+ln -s %{openshift_lib}/node/jobs/1minutely %{buildroot}/etc/cron.d/
+ln -s %{openshift_lib}/node/jobs/openshift-origin-cron-minutely %{buildroot}/etc/cron.minutely/
+ln -s %{openshift_lib}/node/jobs/openshift-origin-cron-hourly %{buildroot}/etc/cron.hourly/
+ln -s %{openshift_lib}/node/jobs/openshift-origin-cron-daily %{buildroot}/etc/cron.daily/
+ln -s %{openshift_lib}/node/jobs/openshift-origin-cron-weekly %{buildroot}/etc/cron.weekly/
+ln -s %{openshift_lib}/node/jobs/openshift-origin-cron-monthly %{buildroot}/etc/cron.monthly/
+ln -s %{openshift_lib}/node/jobs/openshift-origin-stale-lockfiles %{buildroot}/etc/cron.daily/
 
 %post
 if ! grep -q "/usr/bin/oo-trap-user" /etc/shells
@@ -212,8 +174,10 @@ fi
 %if 0%{?fedora} >= 16 || 0%{?rhel} >= 7
   systemctl restart  crond.service || :
   systemctl enable openshift-tc.service || :
+  systemctl enable openshift-iptables-port-proxy || :
 %else
   /sbin/chkconfig --add openshift-tc || :
+  /sbin/chkconfig --add openshift-iptables-port-proxy || :
   service crond restart || :
 %endif
 
@@ -228,6 +192,7 @@ oo-admin-ctl-tc stop >/dev/null 2>&1 || :
   systemctl disable openshift-tc.service || :
 %else
   chkconfig --del openshift-tc || :
+  chkconfig --del openshift-iptables-port-proxy || :
 %endif
 
 fi
@@ -241,39 +206,29 @@ fi
 %{gem_spec}
 %attr(0750,-,-) /usr/sbin/*
 %attr(0755,-,-) /usr/bin/*
+%attr(0750,-,-) %{_var}/log/openshift/node
 /usr/libexec/openshift/lib/quota_attrs.sh
 /usr/libexec/openshift/lib/archive_git_submodules.sh
-%dir %attr(0755,-,-) /usr/lib/openshift/cartridge_sdk
-%dir %attr(0755,-,-) /usr/lib/openshift/cartridge_sdk/bash
-%attr(0744,-,-) /usr/lib/openshift/cartridge_sdk/bash/*
-%dir %attr(0755,-,-) /usr/lib/openshift/cartridge_sdk/ruby
-%attr(0744,-,-) /usr/lib/openshift/cartridge_sdk/ruby/*
+%dir %attr(0755,-,-) %{openshift_lib}/cartridge_sdk
+%dir %attr(0755,-,-) %{openshift_lib}/cartridge_sdk/bash
+%dir %attr(0755,-,-) %{openshift_lib}/cartridge_sdk/ruby
+%attr(0744,-,-) %{openshift_lib}/cartridge_sdk/bash/*
+%attr(0744,-,-) %{openshift_lib}/cartridge_sdk/ruby/*
 %dir /etc/openshift
 %config(noreplace) /etc/openshift/node.conf
+%attr(0600,-,-) %config(noreplace) /etc/openshift/iptables.filter.rules
+%attr(0600,-,-) %config(noreplace) /etc/openshift/iptables.nat.rules
 %config(noreplace) /etc/openshift/env/*
-%config(noreplace) /etc/openshift/resource_limits.conf
-/etc/httpd/conf.d/openshift
-%config(noreplace) /etc/httpd/conf.d/000001_openshift_origin_node.conf
-%config(noreplace) /etc/httpd/conf.d/000001_openshift_origin_node_servername.conf
-%config(noreplace) /etc/httpd/conf.d/openshift_route.include
+%attr(0640,-,-) %config(noreplace) /etc/openshift/resource_limits.conf
 %dir %attr(0755,-,-) %{appdir}
-%dir %attr(0750,root,apache) %{appdir}/.httpd.d
-%attr(0640,root,apache) %config(noreplace) %{appdir}/.httpd.d/routes.json
-%attr(0640,root,apache) %config(noreplace) %{appdir}/.httpd.d/geardb.json
-%attr(0640,root,apache) %config(noreplace) %{appdir}/.httpd.d/nodes.txt
-%attr(0640,root,apache) %config(noreplace) %{appdir}/.httpd.d/aliases.txt
-%attr(0640,root,apache) %config(noreplace) %{appdir}/.httpd.d/idler.txt
-%attr(0640,root,apache) %config(noreplace) %{appdir}/.httpd.d/sts.txt
-%attr(0750,root,apache) %config(noreplace) %{appdir}/.httpd.d/nodes.db
-%attr(0750,root,apache) %config(noreplace) %{appdir}/.httpd.d/aliases.db
-%attr(0750,root,apache) %config(noreplace) %{appdir}/.httpd.d/idler.db
-%attr(0750,root,apache) %config(noreplace) %{appdir}/.httpd.d/sts.db
 %dir %attr(0750,-,-) %{appdir}/.tc_user_dir
 
 %if 0%{?fedora}%{?rhel} <= 6
 %attr(0755,-,-)	/etc/rc.d/init.d/openshift-tc
+%attr(0755,-,-) /etc/rc.d/init.d/openshift-iptables-port-proxy
 %else
 %attr(0750,-,-) /etc/systemd/system/openshift-tc.service
+%attr(0750,-,-) /etc/systemd/system/openshift-iptables-port-proxy.service
 %endif
 
 %if 0%{?fedora} >= 15
@@ -281,14 +236,14 @@ fi
 %endif
 # upstart files
 %attr(0755,-,-) %{_var}/run/openshift
-%dir %attr(0755,-,-) /usr/lib/openshift/node/jobs
-%config(noreplace) %attr(0644,-,-) /usr/lib/openshift/node/jobs/1minutely
-%attr(0755,-,-) /usr/lib/openshift/node/jobs/openshift-origin-cron-minutely
-%attr(0755,-,-) /usr/lib/openshift/node/jobs/openshift-origin-cron-hourly
-%attr(0755,-,-) /usr/lib/openshift/node/jobs/openshift-origin-cron-daily
-%attr(0755,-,-) /usr/lib/openshift/node/jobs/openshift-origin-cron-weekly
-%attr(0755,-,-) /usr/lib/openshift/node/jobs/openshift-origin-cron-monthly
-%attr(0755,-,-) /usr/lib/openshift/node/jobs/openshift-origin-stale-lockfiles
+%dir %attr(0755,-,-) %{openshift_lib}/node/jobs
+%config(noreplace) %attr(0644,-,-) %{openshift_lib}/node/jobs/1minutely
+%attr(0755,-,-) %{openshift_lib}/node/jobs/openshift-origin-cron-minutely
+%attr(0755,-,-) %{openshift_lib}/node/jobs/openshift-origin-cron-hourly
+%attr(0755,-,-) %{openshift_lib}/node/jobs/openshift-origin-cron-daily
+%attr(0755,-,-) %{openshift_lib}/node/jobs/openshift-origin-cron-weekly
+%attr(0755,-,-) %{openshift_lib}/node/jobs/openshift-origin-cron-monthly
+%attr(0755,-,-) %{openshift_lib}/node/jobs/openshift-origin-stale-lockfiles
 %dir /etc/cron.minutely
 %config(noreplace) %attr(0644,-,-) /etc/cron.d/1minutely
 %attr(0755,-,-) /etc/cron.minutely/openshift-origin-cron-minutely
@@ -299,6 +254,909 @@ fi
 %attr(0755,-,-) /etc/cron.daily/openshift-origin-stale-lockfiles
 
 %changelog
+* Fri Dec 06 2013 Krishna Raman <kraman at gmail.com> 1.18.0.1-1
+- Bumping versions for OpenShift Origin Release 3 (kraman at gmail.com)
+- Merge pull request #4280 from pmorie/dev/fix-tests
+  (dmcphers+openshiftbot at redhat.com)
+- Fix binary deploy functional test on origin (pmorie at gmail.com)
+- Increase inode quotas to 80k per GB (andy.goldstein at gmail.com)
+- Bug 1036006 - oo-admin-ctl-gears *startall commands fail (jhonce at redhat.com)
+- Security - add OPENSHIFT_UMASK to oo-trap-user for - BZ990441
+  (tkramer at redhat.com)
+- Merge pull request #4019 from markllama/bugs/BZ1024102
+  (dmcphers+openshiftbot at redhat.com)
+- Fix upgrade tests (pmorie at gmail.com)
+- allow oo-trap-user to run from non-public-key auth (markllama at gmail.com)
+- Merge pull request #4230 from bparees/mysql_port_in_use
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4224 from mmahut/ownlogdir
+  (dmcphers+openshiftbot at redhat.com)
+- bug 985784: Unable to add database cartridge to apps again after removing it
+  due to TCP connection stays in CLOSE_WAIT status (bparees at redhat.com)
+- Merge pull request #4226 from ncdc/bz1033572-default-git-ref
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1033572 (andy.goldstein at gmail.com)
+- Bug 1032906: Fix generic error handling in Openshift agent
+  (ironcladlou at gmail.com)
+- node: we do not want %%ghost-ed log files (mmahut at redhat.com)
+- node: make sure to own the /var/log/openshift/node directory in rpm
+  (mmahut at redhat.com)
+- Merge pull request #4214 from ncdc/bz1032950-lchown-by-id-link
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1032950 (andy.goldstein at gmail.com)
+- Fix viminfo file error when using vim within gears (jhadvig at redhat.com)
+- Up tries on http assertions in functional API (pmorie at gmail.com)
+- Merge pull request #4209 from mrunalp/dev/upgrade_endpoints
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4198 from ncdc/haproxy-keep-proxy-gears-disabled
+  (dmcphers+openshiftbot at redhat.com)
+- bump_minor_versions for sprint 37 (admiller at redhat.com)
+- Keep proxy gears disabled appropriately (andy.goldstein at gmail.com)
+- Migrate endpoints during upgrade. (mrunalp at gmail.com)
+
+* Wed Dec 04 2013 Krishna Raman <kraman at gmail.com> 1.18.0.1-1
+- Merge pull request #4280 from pmorie/dev/fix-tests
+  (dmcphers+openshiftbot at redhat.com)
+- Fix binary deploy functional test on origin (pmorie at gmail.com)
+- Increase inode quotas to 80k per GB (andy.goldstein at gmail.com)
+- Bug 1036006 - oo-admin-ctl-gears *startall commands fail (jhonce at redhat.com)
+- Security - add OPENSHIFT_UMASK to oo-trap-user for - BZ990441
+  (tkramer at redhat.com)
+- Merge pull request #4019 from markllama/bugs/BZ1024102
+  (dmcphers+openshiftbot at redhat.com)
+- Fix upgrade tests (pmorie at gmail.com)
+- allow oo-trap-user to run from non-public-key auth (markllama at gmail.com)
+- Merge pull request #4230 from bparees/mysql_port_in_use
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4224 from mmahut/ownlogdir
+  (dmcphers+openshiftbot at redhat.com)
+- bug 985784: Unable to add database cartridge to apps again after removing it
+  due to TCP connection stays in CLOSE_WAIT status (bparees at redhat.com)
+- Merge pull request #4226 from ncdc/bz1033572-default-git-ref
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1033572 (andy.goldstein at gmail.com)
+- Bug 1032906: Fix generic error handling in Openshift agent
+  (ironcladlou at gmail.com)
+- node: we do not want %%ghost-ed log files (mmahut at redhat.com)
+- node: make sure to own the /var/log/openshift/node directory in rpm
+  (mmahut at redhat.com)
+- Merge pull request #4214 from ncdc/bz1032950-lchown-by-id-link
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1032950 (andy.goldstein at gmail.com)
+- Fix viminfo file error when using vim within gears (jhadvig at redhat.com)
+- Up tries on http assertions in functional API (pmorie at gmail.com)
+- Merge pull request #4209 from mrunalp/dev/upgrade_endpoints
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4198 from ncdc/haproxy-keep-proxy-gears-disabled
+  (dmcphers+openshiftbot at redhat.com)
+- bump_minor_versions for sprint 37 (admiller at redhat.com)
+- Keep proxy gears disabled appropriately (andy.goldstein at gmail.com)
+- Migrate endpoints during upgrade. (mrunalp at gmail.com)
+
+* Tue Nov 19 2013 Adam Miller <admiller at redhat.com> 1.17.6-1
+- Fix assertion messages in functional api (pmorie at gmail.com)
+
+* Sun Nov 17 2013 Adam Miller <admiller at redhat.com> 1.17.5-1
+- Make tests using deployment_tester easier to debug (pmorie at gmail.com)
+
+* Wed Nov 13 2013 Adam Miller <admiller at redhat.com> 1.17.4-1
+- Fix bug 1028389 (pmorie at gmail.com)
+- Fix upgrade issues when check_deployments_integrity is called with no options
+  (pmorie at gmail.com)
+- Merge pull request #4168 from mfojtik/bugzilla/1014793
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4124 from a13m/app-container
+  (dmcphers+openshiftbot at redhat.com)
+- Fix bug 1029184: deployments integrity check (pmorie at gmail.com)
+- Bug 1014793 - Added 'wait_for_pid_file' function to Bash SDK
+  (mfojtik at redhat.com)
+- Improve performance for tools which iterate over ApplicationContainers
+  (agrimm at redhat.com)
+
+* Mon Nov 11 2013 Adam Miller <admiller at redhat.com> 1.17.3-1
+- Merge pull request #4146 from rmillner/BZ1028576
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1028576 - EtcUtils should be explicitly required by the selinux module if
+  its going to be used. (rmillner at redhat.com)
+- Merge pull request #4119 from mfojtik/bugzilla/1026273
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1026273 - Allow the '_' character in cartridge name (mfojtik at redhat.com)
+
+* Fri Nov 08 2013 Adam Miller <admiller at redhat.com> 1.17.2-1
+- Merge pull request #4136 from pmorie/fix-tests
+  (dmcphers+openshiftbot at redhat.com)
+- Fix cartridge extended tests: force erasure of installed cartridges during
+  tests (pmorie at gmail.com)
+- Merge pull request #4133 from ironcladlou/bz/1025451
+  (dmcphers+openshiftbot at redhat.com)
+- Fix bug 1028257 (pmorie at gmail.com)
+- Merge pull request #4121 from brenton/misc7
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1025451: Include cartridge vendor in sdk cart ident function
+  (ironcladlou at gmail.com)
+- Bug 1016983 - oo-admin-ctl-iptables-port-proxy status now checks the NAT
+  table (bleanhar at redhat.com)
+- Bug 1016983 - improving the oo-admin-ctl-iptables-port-proxy status check
+  (bleanhar at redhat.com)
+- Bug 1016983 - Check for the nat file in oo-admin-ctl-iptables-port-proxy
+  status (bleanhar at redhat.com)
+- Bug 1016983 - Adding a status method for oo-diagnostics (bleanhar at redhat.com)
+
+* Thu Nov 07 2013 Adam Miller <admiller at redhat.com> 1.17.1-1
+- Merge pull request #4114 from danmcp/master
+  (dmcphers+openshiftbot at redhat.com)
+- splitting out ext functionals (dmcphers at redhat.com)
+- Fix bug 991387: Don't allow erase of carts in the cart_base_path
+  (pmorie at gmail.com)
+- Rest API Deployment support for passing the artifact url parameter with
+  associated tests in the broker and node.  Enabling the artifact url param in
+  the rest models. (jajohnso at redhat.com)
+- Merge pull request #4109 from ncdc/remove-chdir
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4101 from ironcladlou/dev/chdir
+  (dmcphers+openshiftbot at redhat.com)
+- Remove calls to FileUtils.cd (andy.goldstein at gmail.com)
+- update for 36 upgrade (dmcphers at redhat.com)
+- Merge pull request #4102 from pmorie/bugs/1022336
+  (dmcphers+openshiftbot at redhat.com)
+- Remove all uses of #chdir in threaded code (ironcladlou at gmail.com)
+- Merge pull request #4099 from pmorie/bugs/995638
+  (dmcphers+openshiftbot at redhat.com)
+- Fix bug 1022336: alias lsof to lsof -w (pmorie at gmail.com)
+- Merge pull request #4091 from ncdc/fix-secure-cartridge-race-condition
+  (dmcphers+openshiftbot at redhat.com)
+- Fix bug 995638: do not store stderr in a variable during interactive psql
+  (pmorie at gmail.com)
+- Fix race condition in secure_cartridge (andy.goldstein at gmail.com)
+- Fix all invalid IPs in the iptables nat file (andy.goldstein at gmail.com)
+- Fix bug 1004649 (pmorie at gmail.com)
+- Merge pull request #4082 from rmillner/1024721
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1024721 - Add purge functionality to the frontend plugins.
+  (rmillner at redhat.com)
+- Add inhibit loading the environment for some uses of ApplicationContainer.all
+  (rmillner at redhat.com)
+- Bug 1026367 - Moving the sysctl logic to oo-admin-ctl-iptables-port-proxy
+  (bleanhar at redhat.com)
+- Bug 1026367 - Improving oo-admin-ctl-iptables-port-proxy "UI"
+  (bleanhar at redhat.com)
+- Bug 1026367 - starting openshift-iptables-port-proxy after the network is up
+  (bleanhar at redhat.com)
+- Bug 1026367 - openshift-iptables-port-proxy service script should enable
+  net.ipv4.conf.all.route_localnet (bleanhar at redhat.com)
+- bump_minor_versions for sprint 36 (admiller at redhat.com)
+
+* Thu Oct 31 2013 Adam Miller <admiller at redhat.com> 1.16.11-1
+- Merge pull request #4065 from pmorie/bugs/1025261
+  (dmcphers+openshiftbot at redhat.com)
+- Fix bug 1025261: call activate with 'all' during restore (pmorie at gmail.com)
+
+* Thu Oct 31 2013 Adam Miller <admiller at redhat.com> 1.16.10-1
+- Merge pull request #4061 from mfojtik/bugzilla/1019219
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1019219 - Exclude USER,SHELL and LOGNAME from passenv.conf
+  (mfojtik at redhat.com)
+- Bug 1025043 (andy.goldstein at gmail.com)
+- Merge pull request #4051 from pmorie/bugs/1024588
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4047 from ncdc/bz1024698
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1024698 (andy.goldstein at gmail.com)
+- Fix bug 1024588: add exclusions for upgrade metadata in snapshot.rb
+  (pmorie at gmail.com)
+
+* Wed Oct 30 2013 Adam Miller <admiller at redhat.com> 1.16.9-1
+- Merge pull request #3958 from detiber/fixTests
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4027 from mfojtik/bugzilla/1024284
+  (dmcphers+openshiftbot at redhat.com)
+- Cleanup register_user for functional_api (jdetiber at redhat.com)
+- <tests> Update test tags and enable REMOTE_USER auth for tests
+  (jdetiber at redhat.com)
+- Merge pull request #4035 from tkramer-
+  rh/dev/tkramer/security/umask_for_libra_user
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4032 from ncdc/update-cluster-fix-error-reporting
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4031 from danmcp/master
+  (dmcphers+openshiftbot at redhat.com)
+- Security - umask setting for libra user in rhcsh to 077 (tkramer at redhat.com)
+- Fix activation error reporting in update_cluster (andy.goldstein at gmail.com)
+- Better error handling related to 1024149 (dmcphers at redhat.com)
+- Refactor parse_valid_user method and remove unused variables
+  (mfojtik at redhat.com)
+- Bug 1024284 - Do not check if tc rules exists directly in startuser_imp
+  (mfojtik at redhat.com)
+- Fix the statususer command output for oo-admin-ctl-tc (mfojtik at redhat.com)
+
+* Tue Oct 29 2013 Adam Miller <admiller at redhat.com> 1.16.8-1
+- Change snapshot/restore for changes to pre-receive (pmorie at gmail.com)
+- Merge pull request #4017 from ncdc/gear-registry-atomic-write-sync
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4010 from pmorie/bugs/1021917
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4011 from tkramer-
+  rh/dev/tkramer/security/umask_for_libra_user
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4013 from brenton/nodelogs1
+  (dmcphers+openshiftbot at redhat.com)
+- Fix gear registry file permissions during backup/restore
+  (andy.goldstein at gmail.com)
+- Ensure correct permissions on gear registry file (andy.goldstein at gmail.com)
+- Bug 1022271 (andy.goldstein at gmail.com)
+- Fix bug 1021917: update snapshot/restore for new build/deployment
+  (pmorie at gmail.com)
+- Safer writing of gear registry to disk (andy.goldstein at gmail.com)
+- rubygem-openshift-origin-node should own /var/log/openshift/node/*.log
+  (bleanhar at redhat.com)
+- Security - BZ982824 add umask env for libra users in rhcsh
+  (tkramer at redhat.com)
+
+* Mon Oct 28 2013 Adam Miller <admiller at redhat.com> 1.16.7-1
+- Don't use app_dns == gear_dns with update_cluster (andy.goldstein at gmail.com)
+- Merge pull request #3997 from ncdc/bz1023372
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4003 from ncdc/bz1018343
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #4000 from ncdc/bz1023512
+  (dmcphers+openshiftbot at redhat.com)
+- Use do_command with gear binary-deploy (andy.goldstein at gmail.com)
+- Fall back to current deployment dir for remotedeploy
+  (andy.goldstein at gmail.com)
+- Disallow 'gear deploy' if deployment type is binary
+  (andy.goldstein at gmail.com)
+- Merge pull request #3995 from ncdc/binary-prepare-clean-repo
+  (dmcphers+openshiftbot at redhat.com)
+- Binary deployment improvements (andy.goldstein at gmail.com)
+
+* Fri Oct 25 2013 Adam Miller <admiller at redhat.com> 1.16.6-1
+- Ignore hot_deploy for initial from-code build (andy.goldstein at gmail.com)
+- Merge pull request #3991 from danmcp/master
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3982 from rmillner/misc_fixes
+  (dmcphers+openshiftbot at redhat.com)
+- Removing leftover v1 cart code (dmcphers at redhat.com)
+- Report errors back to oo-cgroup-reclassify and log them.
+  (rmillner at redhat.com)
+- Add useful comments for the new parameters. (rmillner at redhat.com)
+- Exclude metadata.json from deployment checksum (andy.goldstein at gmail.com)
+
+* Thu Oct 24 2013 Adam Miller <admiller at redhat.com> 1.16.5-1
+- Merge pull request #3980 from ncdc/bz1022868
+  (dmcphers+openshiftbot at redhat.com)
+- Start web proxy cartridge in activate (andy.goldstein at gmail.com)
+
+* Thu Oct 24 2013 Adam Miller <admiller at redhat.com> 1.16.4-1
+- kerberos work for broker and console (jliggitt at redhat.com)
+- abstract ssh "key" manangement and add support for k5login
+  (mlamouri at redhat.com)
+- Merge pull request #3977 from rmillner/BZ1020555
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3976 from ncdc/no-rotation-on-scale-up
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1020555 - Add better process termination control to kill_procs and
+  include it as the last step in idle. (rmillner at redhat.com)
+- Fix unit test (andy.goldstein at gmail.com)
+- Merge pull request #3971 from ncdc/bz1022361
+  (dmcphers+openshiftbot at redhat.com)
+- Fix failure when adding new proxy gear (andy.goldstein at gmail.com)
+- Improve error handling in gear script (andy.goldstein at gmail.com)
+- Restore 'gear build' functionality on normal gears (andy.goldstein at gmail.com)
+
+* Wed Oct 23 2013 Adam Miller <admiller at redhat.com> 1.16.3-1
+- Merge pull request #3955 from ncdc/copy-on-activate
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3964 from jwhonce/bug/1021462
+  (dmcphers+openshiftbot at redhat.com)
+- Restore app-root symlinks (andy.goldstein at gmail.com)
+- Bug 1021462 - Pushing user variables failing if haproxy not installed
+  (jhonce at redhat.com)
+- Various deploy fixes (andy.goldstein at gmail.com)
+
+* Tue Oct 22 2013 Adam Miller <admiller at redhat.com> 1.16.2-1
+- Bug 1021583 - Stop chmod'ing all cron scripts (jhonce at redhat.com)
+- Merge pull request #3943 from BanzaiMan/dev/hasari/bz1021355
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1021355 (asari.ruby at gmail.com)
+- Fix bug 1021016 (pmorie at gmail.com)
+
+* Mon Oct 21 2013 Adam Miller <admiller at redhat.com> 1.16.1-1
+- Merge pull request #3938 from jwhonce/bug/1020997
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1020997 - Introduce etc_utils.rb (jhonce at redhat.com)
+- Sync deployment metadata from jenkins builder (andy.goldstein at gmail.com)
+- Bug 1018665 (andy.goldstein at gmail.com)
+- Merge pull request #3913 from ncdc/bz1018387
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3922 from Miciah/bug-1020391-openshift-iptables-port-
+  proxy-service-doesnt-start-because-of-selinux
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3916 from ironcladlou/bz/1020365
+  (dmcphers+openshiftbot at redhat.com)
+- Add dependency dirs to managed_files.yml (andy.goldstein at gmail.com)
+- Merge pull request #3891 from Miciah/resource_limits.conf-remove-
+  apache_bandwidth-and-related-settings (dmcphers+openshiftbot at redhat.com)
+- oo-admin-ctl-iptables-port-proxy: SELinux fix (miciah.masters at gmail.com)
+- Bug 1019646: Check if specified git ref is valid during deploy
+  (asari.ruby at gmail.com)
+- Merge pull request #3909 from ironcladlou/dev/build-deploy-metadata
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3910 from rmillner/BZ1020029
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3894 from pmorie/dev/fix-tests
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1020029 - needed to enumerate all threads in the task dir.
+  (rmillner at redhat.com)
+- Fix string comparison in marker checks (ironcladlou at gmail.com)
+- Merge pull request #3905 from ironcladlou/dev/build-deploy-metadata
+  (dmcphers+openshiftbot at redhat.com)
+- Use deployment metadata for build related marker lookups
+  (ironcladlou at gmail.com)
+- Add description field to endpoints so that TLS urls can report what they are
+  for. (rmillner at redhat.com)
+- Fix extended tests (pmorie at gmail.com)
+- resource_limits: Delete settings for httpd (miciah.masters at gmail.com)
+- Merge pull request #3876 from ironcladlou/build-deploy
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3882 from mrunalp/dev/ha_local
+  (dmcphers+openshiftbot at redhat.com)
+- Persist deployment checksum to deployment metadata file
+  (ironcladlou at gmail.com)
+- Changes to disable local gear for scalable apps. (mrunalp at gmail.com)
+- Merge pull request #3869 from ncdc/bz1018082
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3874 from brenton/remove_test_deps3
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3870 from ncdc/master (dmcphers+openshiftbot at redhat.com)
+- Removing test dependencies from Broker/Console build and runtime.
+  (bleanhar at redhat.com)
+- Bug 1018082 (andy.goldstein at gmail.com)
+- Bug 999884 - Check if 'tc' already exists in oo-admin-ctl-tc
+  (mfojtik at redhat.com)
+- Test case fixes for Origin: (kraman at gmail.com)
+- Remove unused code (andy.goldstein at gmail.com)
+- Merge pull request #3861 from ncdc/deploy-fixes
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1018009 - spawn a separate thread to waitpid after killing.
+  (rmillner at redhat.com)
+- Deploy fixes (andy.goldstein at gmail.com)
+- Merge pull request #3858 from ironcladlou/build-deploy
+  (dmcphers+openshiftbot at redhat.com)
+- Fix keep_deployments handling in deploy tests (ironcladlou at gmail.com)
+- More command consistency (dmcphers at redhat.com)
+- Merge pull request #3852 from danmcp/master
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3846 from pmorie/dev/test-coverage
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3847 from pmorie/bugs/1017719
+  (dmcphers+openshiftbot at redhat.com)
+- Standardize gear command names (dmcphers at redhat.com)
+- Merge pull request #3853 from mrunalp/bug/origin_tests
+  (dmcphers+openshiftbot at redhat.com)
+- Fix list deployment test to be timezone agnostic. (mrunalp at gmail.com)
+- Bug 1017661 - Dont add a leading slash in non-http based mappings.  Other
+  fixes. (rmillner at redhat.com)
+- Fix bug 1017719: run all stages of gear upgrade extension (pmorie at gmail.com)
+- Merge pull request #3839 from ncdc/remove-unused-sdk-sync
+  (dmcphers+openshiftbot at redhat.com)
+- Add tests for keep deployments = 1 (pmorie at gmail.com)
+- Merge pull request #3795 from ncdc/gear-registry-dash
+  (dmcphers+openshiftbot at redhat.com)
+- Remove dead code (andy.goldstein at gmail.com)
+- Fixing extended tests (dmcphers at redhat.com)
+- WIP Node Platform - Update tests for new cgroups call (jhonce at redhat.com)
+- WIP Node Platform - Add support for OPENSHIFT_GEAR_MEMORY_MB
+  (jhonce at redhat.com)
+- Merge pull request #3804 from pmorie/dev/binary-deploy
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3805 from ironcladlou/dev/build-deploy/id-handling
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3817 from ironcladlou/bz/1016977
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1016977: Support stream output during interactive activation
+  (ironcladlou at gmail.com)
+- Fix upgrade extension detection (ironcladlou at gmail.com)
+- Add error handing to gear binary_deploy (pmorie at gmail.com)
+- Make deployment ids unique rather than checksum based (ironcladlou at gmail.com)
+- Merge pull request #3799 from mrunalp/bugs/1016431
+  (dmcphers+openshiftbot at redhat.com)
+- Fix perms for the config files. (mrunalp at gmail.com)
+- Fix scaling_func_test (pmorie at gmail.com)
+- Use dash instead of underscore in gear-registry (andy.goldstein at gmail.com)
+- Adding deploy migration for broker auth (dmcphers at redhat.com)
+- Merge pull request #3778 from pmorie/build-deploy
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3775 from rmillner/cgroup_read_all
+  (dmcphers+openshiftbot at redhat.com)
+- Add gear binary-deploy (pmorie at gmail.com)
+- Merge pull request #3747 from rmillner/frontend-sni-proxy
+  (dmcphers+openshiftbot at redhat.com)
+- Allow "all" parameter to list all cgroup names that the script has
+  permissions to access. (rmillner at redhat.com)
+- Only grep for post_configure output when building (andy.goldstein at gmail.com)
+- Create HAProxy SNI proxy plugin package and use endpoint protocols
+  (rmillner at redhat.com)
+- Fix mock post_configure calls in build unit tests (ironcladlou at gmail.com)
+- Remove unused variable (andy.goldstein at gmail.com)
+- Better info and error handling (andy.goldstein at gmail.com)
+- Add multi-ha tests (ironcladlou at gmail.com)
+- Fix rake tasks (pmorie at gmail.com)
+- Various fixes (andy.goldstein at gmail.com)
+- Node test cleanup (ironcladlou at gmail.com)
+- Fix activation reporting (dmcphers at redhat.com)
+- Add deployment dir consistency checks in function test
+  (ironcladlou at gmail.com)
+- Deploy test fixes (ironcladlou at gmail.com)
+- Deploy test fixes (ironcladlou at gmail.com)
+- store and return times as times (dmcphers at redhat.com)
+- Fix node Rask task syntax error (ironcladlou at gmail.com)
+- Add mergepath and ext_func_test targets to node RakeFile Extract functional
+  api and tester from scaling_func_test (pmorie at gmail.com)
+- Display git info during build (andy.goldstein at gmail.com)
+- First pass at cartridge upgrade scripts and changes to scaling_func_test.
+  (pmorie at gmail.com)
+- Consolidate activate/activate_gear (ironcladlou at gmail.com)
+- Add with_gear_rotation helper (andy.goldstein at gmail.com)
+- Use deployment order when activation time is null for multiple entries
+  (dmcphers at redhat.com)
+- Fixing merges (dmcphers at redhat.com)
+- Fixing tests and resolving remaining communication between broker and node
+  for deployments (dmcphers at redhat.com)
+- Fix broken tests (andy.goldstein at gmail.com)
+- Allow for floats with time storage (dmcphers at redhat.com)
+- Combine multiple metadata files to 1 (andy.goldstein at gmail.com)
+- Fix JSON handling in remote proxy update (ironcladlou at gmail.com)
+- Build-deploy upgrade changes (pmorie at gmail.com)
+- Add parallel concurrency ratio of .5 when called from the broker
+  (dmcphers at redhat.com)
+- Modify 'gear restart' to do all cart instances (andy.goldstein at gmail.com)
+- Minor prepare changes (pmorie at gmail.com)
+- Fix unit tests related to activation (ironcladlou at gmail.com)
+- Fix failing tests (pmorie at gmail.com)
+- WIP error handling for proxy updates (ironcladlou at gmail.com)
+- Add broker auth as permanent fixture of every app (dmcphers at redhat.com)
+- update_cluster fixes (andy.goldstein at gmail.com)
+- Fix bson hash error (dmcphers at redhat.com)
+- Implement contract for distribute (pmorie at gmail.com)
+- Sync git repo to all proxy gears in post_receive (andy.goldstein at gmail.com)
+- Add error handling (pmorie at gmail.com)
+- Pass back deployments in new param from deploy called through the rest api
+  (dmcphers at redhat.com)
+- Fix call to extract_deployment_archive (andy.goldstein at gmail.com)
+- Remove app-archives directory (andy.goldstein at gmail.com)
+- Default archive deployment_datetime arg to nil (andy.goldstein at gmail.com)
+- Coordinated drain across proxy gears on git push (andy.goldstein at gmail.com)
+- Add oo-gear-registry and change haproxy to use platform gear registry
+  (pmorie at gmail.com)
+- Use public_hostname instead of ip in gear registry (andy.goldstein at gmail.com)
+- Store git info with deployment metadata (andy.goldstein at gmail.com)
+- Cleanup (pmorie at gmail.com)
+- Fix tests and add gear archive_deployment (pmorie at gmail.com)
+- Fix tests (dmcphers at redhat.com)
+- Deploy WIP (dmcphers at redhat.com)
+- Skip scaling tests for zend (pmorie at gmail.com)
+- Add zend to scaling func test (pmorie at gmail.com)
+- Add structure to gear registry (andy.goldstein at gmail.com)
+- Deploy WIP (dmcphers at redhat.com)
+- Set RestClient timeout correctly (pmorie at gmail.com)
+- Add retries to scaling_functional_test and fixes for python
+  (pmorie at gmail.com)
+- Fix path for perl in test (pmorie at gmail.com)
+- Correct brittle hard-coded deployment id expectation
+  (andy.goldstein at gmail.com)
+- Fix deployment unit tests (pmorie at gmail.com)
+- Update test to use oo-devel-node (andy.goldstein at gmail.com)
+- Adding application config WIP (dmcphers at redhat.com)
+- Fix build-dependencies Fix scaling_functional_test (pmorie at gmail.com)
+- Fix unit tests (andy.goldstein at gmail.com)
+- WIP support for multiple web proxies (andy.goldstein at gmail.com)
+- poor-man's test parameterization (pmorie at gmail.com)
+- Add --exclude-web-proxy option to gear stop command Update
+  jenkins_shell_command template to call gear stop --conditional --exclude-web-
+  proxy Update scaling functional test (pmorie at gmail.com)
+- Build & deployment improvements (andy.goldstein at gmail.com)
+- Build & deployment improvements (andy.goldstein at gmail.com)
+- Delete all applications in domain (including jenkins builders) Add primary
+  option to main jbossas endpoint (pmorie at gmail.com)
+- Generalize scaling functional test (pmorie at gmail.com)
+- Build & deployment improvements (andy.goldstein at gmail.com)
+- Use OPENSHIFT_DEPENDENCIES_DIR in jenkins_shell_command for php
+  (pmorie at gmail.com)
+- Build & deployment improvements (andy.goldstein at gmail.com)
+- Bug 1014768 - Audit additional uses of password calls. (rmillner at redhat.com)
+- Bug 1014768 - the previous logic could not properly distinguish usernames
+  that begin with numbers and called Etc.getpwnam too often.
+  (rmillner at redhat.com)
+- bump_minor_versions for sprint 35 (admiller at redhat.com)
+
+* Fri Oct 04 2013 Adam Miller <admiller at redhat.com> 1.15.9-1
+- Bug 1014768 - Performance improvements for node_utilization: Allow self.all
+  to pass the pwnam structure rather than having to call getpwnam each time.
+  Lazy load the MCS labels and get rid of an extraneous call to Config.
+  (rmillner at redhat.com)
+- Merge pull request #3766 from mfojtik/bugzilla/1013653
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1013653 - Fix oo-su command so it is not duplicating the getpwnam call
+  (mfojtik at redhat.com)
+
+* Thu Oct 03 2013 Adam Miller <admiller at redhat.com> 1.15.8-1
+- Merge pull request #3763 from rmillner/speed_up_env
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3759 from kraman/test_case_fixes
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1014768 - Loading the environ dominated the cost to enumerate
+  ApplicationContainers.  Narrowing down the list of files to load shaves 50%%.
+  (rmillner at redhat.com)
+- Fix shell_exec_func_test to set shell when creating test user.
+  (kraman at gmail.com)
+- Fix for application_repository_func_test.rb   - gear shell needs to be oo-
+  trap-user for Origin/OSE pam namespace rules to work (kraman at gmail.com)
+- Extract common functionality into admin script and add service file for
+  openshift-iptables-port-proxy. Fix location of lock file. (kraman at gmail.com)
+- Move addresses_bound/address_bound? into container plugin (kraman at gmail.com)
+
+* Wed Oct 02 2013 Adam Miller <admiller at redhat.com> 1.15.7-1
+- Merge pull request #3751 from jwhonce/bug/1012981
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1012981 - Parse post-configure output for client messages
+  (jhonce at redhat.com)
+
+* Tue Oct 01 2013 Adam Miller <admiller at redhat.com> 1.15.6-1
+- Merge pull request #3737 from mfojtik/bugzilla/1013653
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1013653 - Remove '.to_i' in oo-su command to avoid wrong user id
+  (mfojtik at redhat.com)
+- Bug 1012348 - Adding unixODBC dependencies to the node gem for compatibility
+  with Online (bleanhar at redhat.com)
+
+* Fri Sep 27 2013 Troy Dawson <tdawson at redhat.com> 1.15.5-1
+- Merge pull request #3720 from smarterclayton/origin_ui_72_membership
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3721 from mrunalp/dev/ipt-port-proxy
+  (dmcphers+openshiftbot at redhat.com)
+- Merge remote-tracking branch 'origin/master' into origin_ui_72_membership
+  (ccoleman at redhat.com)
+- Initial checkin of iptables port proxy script. (mrunalp at gmail.com)
+- remove admin_tool as a category (rchopra at redhat.com)
+- Origin UI 72 - Membership (ccoleman at redhat.com)
+
+* Thu Sep 26 2013 Troy Dawson <tdawson at redhat.com> 1.15.4-1
+- Merge pull request #3707 from rajatchopra/master
+  (dmcphers+openshiftbot at redhat.com)
+- add mappings support to routing spi, and add protocols to cart manifests
+  (rchopra at redhat.com)
+- Feature tests for ssl_to_gear, V3 of mock cart serves https at primary
+  endpoint on port 8123 (teddythetwig at gmail.com)
+- Merge pull request #3703 from mfojtik/bugzilla/1011721
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1011721- Fixed wrong namespace for Cartridge Ruby SDK
+  (mfojtik at redhat.com)
+
+* Wed Sep 25 2013 Troy Dawson <tdawson at redhat.com> 1.15.3-1
+- Merge pull request #3702 from rajatchopra/master
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3698 from rmillner/vhost_bugs
+  (dmcphers+openshiftbot at redhat.com)
+- typo fix (rchopra at redhat.com)
+- Bug 1008638 - The create step is needed on vhost and other plugins.
+  (rmillner at redhat.com)
+
+* Tue Sep 24 2013 Troy Dawson <tdawson at redhat.com> 1.15.2-1
+- Merge pull request #3659 from mfojtik/bugzilla/1007455
+  (dmcphers+openshiftbot at redhat.com)
+- Added OpenShift::Cartridge::Sdk namespace and removed TODO
+  (mfojtik at redhat.com)
+- Bug 1007455 - Added primary_cartridge methods to Ruby SDK
+  (mfojtik at redhat.com)
+
+* Tue Sep 24 2013 Troy Dawson <tdawson at redhat.com> 1.15.1-1
+- routing spi changes (rchopra at redhat.com)
+- Merge pull request #3662 from abhgupta/abhgupta-dev
+  (dmcphers+openshiftbot at redhat.com)
+- Creating the app secret token (abhgupta at redhat.com)
+- Bug 1008638 - needed a way to force rebuild the framework cart.
+  (rmillner at redhat.com)
+- Using the geardb was causing missed gears on delete, use the
+  ApplicationContainer object instead. (rmillner at redhat.com)
+- Merge pull request #3666 from jwhonce/wip/secret_token
+  (dmcphers+openshiftbot at redhat.com)
+- Card origin_runtime_102 - Support OPENSHIFT_SECRET_TOKEN (jhonce at redhat.com)
+- Add support for cartridge protocol types in manifest (rchopra at redhat.com)
+- Merge pull request #3644 from mmahut/mmahut/cron_dupl_msg
+  (dmcphers+openshiftbot at redhat.com)
+- use proper return codes in has_web_proxu() bash sdk (mmahut at redhat.com)
+- Bug 1008639 - the restore operation is required to put aliases and idler
+  state back. (rmillner at redhat.com)
+- node: adding bash sdk function has_web_proxy to check if the gear contains a
+  web_proxy cartridge (mmahut at redhat.com)
+- Mapping the plugin set at load time imposes unnecessary load order
+  requirements. (rmillner at redhat.com)
+- Functional tests for the frontend plugins. (rmillner at redhat.com)
+- Prelim documentation. (rmillner at redhat.com)
+- Change the plugin change procedure to use Backup->Nuke->Rebuild, more likely
+  to end up in the desired state at the end if the frontend configuration is
+  completely rebuilt. (rmillner at redhat.com)
+- Migration tool and fixes. (rmillner at redhat.com)
+- Break out FrontendHttpServer class into plugin modules. (rmillner at redhat.com)
+- bump_minor_versions for sprint 34 (admiller at redhat.com)
+
+* Thu Sep 12 2013 Adam Miller <admiller at redhat.com> 1.14.7-1
+- Merge pull request #3552 from VojtechVitek/passenv
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3617 from ironcladlou/dev/upgrade-stability
+  (dmcphers+openshiftbot at redhat.com)
+- Fix Apache PassEnv config files (vvitek at redhat.com)
+- Improve upgrade MCollective response handling (ironcladlou at gmail.com)
+
+* Wed Sep 11 2013 Adam Miller <admiller at redhat.com> 1.14.6-1
+- Bug 1000764 - Enforce cartridge start order (jhonce at redhat.com)
+
+* Tue Sep 10 2013 Adam Miller <admiller at redhat.com> 1.14.5-1
+- Bug 1006236 - Update description (jhonce at redhat.com)
+- Merge pull request #3596 from mfojtik/bugzilla/1006207
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3594 from mfojtik/bugzilla/1004687
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1006207 - Fixed typo in add/remove alias (oo-devel-node)
+  (mfojtik at redhat.com)
+- Merge pull request #3590 from tdawson/tdawson/node-rpmlint/2013-09
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1004687 - Fix 'undefined method json_create' in frontend-restore
+  (mfojtik at redhat.com)
+- fix rpmlint errors (tdawson at redhat.com)
+
+* Mon Sep 09 2013 Adam Miller <admiller at redhat.com> 1.14.4-1
+- Fix bug 1004910: provide warning when processed_templates declares a non-
+  existent file (pmorie at gmail.com)
+- Merge pull request #3580 from jwhonce/bug/1005364
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1005364 - Restore gear user usage of facter (jhonce at redhat.com)
+- Bug 1004510 - Remove welcome HEREDOC from rhcsh (jhonce at redhat.com)
+
+* Fri Sep 06 2013 Adam Miller <admiller at redhat.com> 1.14.3-1
+- Bug 1005244 - Remove unused INSTANCE_ID setting from node.conf
+  (bleanhar at redhat.com)
+- Merge pull request #3561 from jwhonce/bug/1004644
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1004886 - set memory.move_charge_at_immigrate (rmillner at redhat.com)
+- Bug 1004644 - Description of frontend-no-sts is wrong (jhonce at redhat.com)
+
+* Thu Sep 05 2013 Adam Miller <admiller at redhat.com> 1.14.2-1
+- Merge pull request #3548 from jwhonce/wip/oo-devel-node
+  (dmcphers+openshiftbot at redhat.com)
+- Node Platform - Fix cucumber tests (jhonce at redhat.com)
+- Merge pull request #3545 from mfojtik/bugzilla/1004216
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1004216 - Fixed typo in frontend-disconnect (oo-devel-node)
+  (mfojtik at redhat.com)
+- Bug 1004292 - Fix typo in oo-devel-node command (mfojtik at redhat.com)
+- Merge pull request #3541 from jwhonce/wip/oo-devel-node
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3528 from rmillner/wrap_port_allocation
+  (dmcphers+openshiftbot at redhat.com)
+- Node Platform - Remove files deprecated by oo-devel-node (jhonce at redhat.com)
+- WIP Node Platform - oo-devel-node: clean up oo-* scripts that emulate mco
+  calls (jhonce at redhat.com)
+- Wrap the port range indefinitely. (rmillner at redhat.com)
+- Merge pull request #3535 from ironcladlou/bz/1003969
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1003969: Don't raise if processed ERBs no longer exist to delete
+  (ironcladlou at gmail.com)
+- Merge pull request #3311 from detiber/runtime_card_213
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1002269 - empty client messages are dropped, should be new line
+  (jforrest at redhat.com)
+- Merge pull request #3521 from kraman/master
+  (dmcphers+openshiftbot at redhat.com)
+- Fix up unit test to prevent test pollution, fix variable name typo
+  (jdetiber at redhat.com)
+- <runtime> Card origin_runtime_213: realtime node_utilization checks
+  (jdetiber at redhat.com)
+- Adding reload as an action to restart openshift-tc (kraman at gmail.com)
+
+* Thu Aug 29 2013 Adam Miller <admiller at redhat.com> 1.14.1-1
+- misc: remove duplicate import in oo-trap-user (mmahut at redhat.com)
+- Merge remote-tracking branch 'origin/master' into propagate_app_id_to_gears
+  (ccoleman at redhat.com)
+- Bug 999859 - Check required arguments for oo-app-create command
+  (mfojtik at redhat.com)
+- Merge remote-tracking branch 'origin/master' into propagate_app_id_to_gears
+  (ccoleman at redhat.com)
+- Merge pull request #3485 from pmorie/dev/upgrades
+  (dmcphers+openshiftbot at redhat.com)
+- Make dependency on 0.0.1 version of mock explicit for upgrade tests
+  (pmorie at gmail.com)
+- Bug 988662 - Add --help to list of arguments for oo-env-var-* commands
+  (mfojtik at redhat.com)
+- nurture -> analytics (dmcphers at redhat.com)
+- Handle .resultset.json (dmcphers at redhat.com)
+- Merge remote-tracking branch 'origin/master' into propagate_app_id_to_gears
+  (ccoleman at redhat.com)
+- Fixing openshift-tc service definition (kraman at gmail.com)
+- Merge pull request #3483 from detiber/bz1000174
+  (dmcphers+openshiftbot at redhat.com)
+- <oo-accept-node> Bug 1000174 - oo-accept-node fixes (jdetiber at redhat.com)
+- Merge pull request #3481 from ironcladlou/bz/1000193
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 1000193: Use an Hourglass in the gear upgrader (ironcladlou at gmail.com)
+- Fix test cases (ccoleman at redhat.com)
+- Merge pull request #3464 from mfojtik/bugzilla/999883
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 999883 - Print command name in usage instead of '$0' (mfojtik at redhat.com)
+- Merge pull request #3474 from fotioslindiakos/Bug999837
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3470 from fotioslindiakos/Bug998704
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3432 from mfojtik/bugzilla/983605
+  (dmcphers+openshiftbot at redhat.com)
+- Remove any deleted/missing throttled gears from throttler's memory
+  (fotios at redhat.com)
+- Rescue usage percentage calculation if it's an unexpected value type
+  (fotios at redhat.com)
+- Add test for zero-length manifest in cartridge repo (pmorie at gmail.com)
+- Bug 983605 - Allow to administrator to change the default 'rhc ssh' motd
+  (mfojtik at redhat.com)
+- Fix message for bug 999189 (pmorie at gmail.com)
+- Merge pull request #3458 from pmorie/bugs/999679
+  (dmcphers+openshiftbot at redhat.com)
+- bump_minor_versions for sprint 33 (admiller at redhat.com)
+- Merge pull request #3452 from pravisankar/dev/ravi/bug998905
+  (dmcphers+openshiftbot at redhat.com)
+- Added environment variable name limitations  - Limit length to 128 bytes.  -
+  Allow letters, digits and underscore but can't begin with digit
+  (rpenta at redhat.com)
+- Fix bug 999679: skip corrupted manifests during cartridge installation
+  (pmorie at gmail.com)
+- Switch OPENSHIFT_APP_UUID to equal the Mongo application '_id' field
+  (ccoleman at redhat.com)
+
+* Wed Aug 21 2013 Adam Miller <admiller at redhat.com> 1.13.9-1
+- Merge pull request #3449 from pmorie/bugs/999189
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3440 from pmorie/bugs/999013
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3427 from ironcladlou/bz/996491
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3441 from jwhonce/wip/user_vars
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3429 from mfojtik/bugzilla/988662
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3426 from mfojtik/bugzilla/998420
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3425 from mfojtik/bugzilla/998363
+  (dmcphers+openshiftbot at redhat.com)
+- Fix bug 999189: gear upgrade extension is a no-op if release version doesn't
+  match supplied version (pmorie at gmail.com)
+- Fix bug 999013: always remove unprocessed env/*.erb files from cartridge dir
+  during compatible upgrade (pmorie at gmail.com)
+- Merge pull request #3439 from pravisankar/dev/ravi/user-env-bugs
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3443 from fotioslindiakos/throttler
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 998794 - Allow blank value for a user environment variable
+  (rpenta at redhat.com)
+- Node Platform - Add .env/user_vars during upgrade (jhonce at redhat.com)
+- Merge pull request #3436 from pmorie/dev/upgrades
+  (dmcphers+openshiftbot at redhat.com)
+- Force throttler to only restore applications under a certain threshold
+  (fotios at redhat.com)
+- Fix creating new endpoints during incompatible upgrades (pmorie at gmail.com)
+- Bug 988662 - Add exit(255) to the usage() methods for oo-user-var scripts
+  (mfojtik at redhat.com)
+- Bug 996491: Show warning when using snapshot and near disk quota
+  (ironcladlou at gmail.com)
+- Bug 998420 - Fixed typo in the --help option for oo-cgroup-template
+  (mfojtik at redhat.com)
+- Bug 998363 - Add --help option to GetoptLong list (mfojtik at redhat.com)
+
+* Tue Aug 20 2013 Adam Miller <admiller at redhat.com> 1.13.8-1
+- BZ#990382: Return error message and code when wrong gear id is given to oo-
+  pam-(enable|disable) (mfojtik at redhat.com)
+- Merge pull request #3410 from pravisankar/dev/ravi/card86
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3409 from rmillner/trailing_dot
+  (dmcphers+openshiftbot at redhat.com)
+- Node Platform - make user variable rsync more reliable (jhonce at redhat.com)
+- User vars node changes:  - Use 'user-var-add' mcollective call for *add*
+  and/or *push* user vars. This will reduce unnecessary additional
+  code/complexity.  - Add some more reserved var names: PATH, IFS, USER, SHELL,
+  HOSTNAME, LOGNAME  - Do not attempt rsync when .env/user_vars dir is empty  -
+  Misc bug fixes (rpenta at redhat.com)
+- WIP Node Platform - Add support for settable user variables
+  (jhonce at redhat.com)
+- Remove trailing dot from the fqdn if there is one. (rmillner at redhat.com)
+
+* Mon Aug 19 2013 Adam Miller <admiller at redhat.com> 1.13.7-1
+- Added 'httpd_restart_action' function to Bash SDK (mfojtik at redhat.com)
+- Fixing typos (dmcphers at redhat.com)
+- Merge pull request #3397 from danmcp/master
+  (dmcphers+openshiftbot at redhat.com)
+- patch upgrade.rb to use gear_map_ident for upgrade_cartridges ident
+  resolution (jolamb at redhat.com)
+- Bug 989225 - the logic changed so that @container_dir is always set and
+  @container_plugin is nil if the container no longer exists.
+  (rmillner at redhat.com)
+
+* Fri Aug 16 2013 Adam Miller <admiller at redhat.com> 1.13.6-1
+- Merge pull request #3380 from rmillner/BZ996296
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3354 from dobbymoodge/origin_runtime_219
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3373 from pmorie/bugs/997158
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 996296 - resource_limits.conf should be mode 640. (rmillner at redhat.com)
+- <cartridges> Additional cart version and test fixes (jolamb at redhat.com)
+- Fix bug 997158: always sort cartridge versions using Manifest.sort_versions
+  (pmorie at gmail.com)
+- <cart version> origin_runtime_219, Update carts and manifests with new
+  versions, handle version change in upgrade code
+  https://trello.com/c/evcTYKdn/219-3-adjust-out-of-date-cartridge-versions
+  (jolamb at redhat.com)
+
+* Thu Aug 15 2013 Adam Miller <admiller at redhat.com> 1.13.5-1
+- Upgrade tool enhancements (ironcladlou at gmail.com)
+
+* Wed Aug 14 2013 Adam Miller <admiller at redhat.com> 1.13.4-1
+- Merge pull request #3352 from danmcp/master
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3322 from smarterclayton/origin_ui_73_membership_model
+  (dmcphers+openshiftbot at redhat.com)
+- remove oo-cart-version Bug 980296 (dmcphers at redhat.com)
+- save exposed port interfaces of a gear (rchopra at redhat.com)
+- Merge remote-tracking branch 'origin/master' into
+  origin_ui_73_membership_model (ccoleman at redhat.com)
+- * Implement a membership model for OpenShift that allows an efficient query
+  of user access based on each resource. * Implement scope limitations that
+  correspond to specific permissions * Expose membership info via the REST API
+  (disableable via config) * Allow multiple domains per user, controlled via a
+  configuration flag * Support additional information per domain
+  (application_count and gear_counts) to improve usability * Let domains
+  support the allowed_gear_sizes option, which limits the gear sizes available
+  to apps in that domain * Simplify domain update interactions - redundant
+  validation removed, and behavior of responses differs slightly. * Implement
+  migration script to enable data (ccoleman at redhat.com)
+
+* Tue Aug 13 2013 Adam Miller <admiller at redhat.com> 1.13.3-1
+- Node Platform - Update oo-get-quota for new interface (jhonce at redhat.com)
+- Bug 980820 - Ensure bogus PATH doesn't stop cartridge operations
+  (jhonce at redhat.com)
+- Merge pull request #3328 from fotioslindiakos/Bug995550
+  (dmcphers+openshiftbot at redhat.com)
+- Ensure boosted gears are not throttled (fotios at redhat.com)
+
+* Fri Aug 09 2013 Adam Miller <admiller at redhat.com> 1.13.2-1
+- Bug 995233 - Use oo_spawn in place of systemu (jhonce at redhat.com)
+- Bug 903106 - Update rhcsh help to reflect gear script (jhonce at redhat.com)
+
+* Thu Aug 08 2013 Adam Miller <admiller at redhat.com> 1.13.1-1
+- Merge pull request #3318 from jwhonce/bug/980820
+  (dmcphers+openshiftbot at redhat.com)
+- Merge pull request #3317 from pmorie/bugs/987155
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 980820 - Cartridge Overriding PATH (jhonce at redhat.com)
+- Bug 987155 (pmorie at gmail.com)
+- Fix error message (jhonce at redhat.com)
+- Card origin_runtime_175 - Report quota on 90%% usage (jhonce at redhat.com)
+- Bug 991824: Make watchman logging configurable via node.conf
+  (ironcladlou at gmail.com)
+- Merge pull request #3243 from fotioslindiakos/Bug989782
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 989782: Node platform should not log user sensitive login name and
+  password credentials (fotios at redhat.com)
+- Merge pull request #3280 from fotioslindiakos/Bug991480
+  (dmcphers+openshiftbot at redhat.com)
+- Handle race condition when trying to throttle gears that no longer exist
+  (fotios at redhat.com)
+- Bug 991225: upgrade script should be run before setup during incompatible
+  upgrade (pmorie at gmail.com)
+- Merge pull request #3268 from jwhonce/bug/986838
+  (dmcphers+openshiftbot at redhat.com)
+- Bug 986838 - Prevent quotas from being lowered beyond usage
+  (jhonce at redhat.com)
+- Bug 839581: Reset system_builder credentials on jenkins restore
+  (ironcladlou at gmail.com)
+- bump_minor_versions for sprint 32 (admiller at redhat.com)
+
 * Thu Aug 01 2013 Krishna Raman <kraman at gmail.com> 1.13.0.1-1
 - Bumping version #s for origin release 2 (kraman at gmail.com)
 - bump_minor_versions for sprint 32 (admiller at redhat.com)
diff --git a/sources b/sources
index 2549fc3..9e51e06 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a6d2d77ba682495725d959113bc030f3  openshift-origin-node-1.13.0.1.gem
+7e3a7573a7b7dced51dfdd08302dd2b3  openshift-origin-node-1.18.0.1.gem


More information about the scm-commits mailing list