3 commits - backend/satellite_tools backend/spacewalk-backend.spec rel-eng/packages
by Miroslav Suchý
backend/satellite_tools/satsync.py | 5 +++--
backend/spacewalk-backend.spec | 6 +++++-
rel-eng/packages/spacewalk-backend | 2 +-
3 files changed, 9 insertions(+), 4 deletions(-)
New commits:
commit 89f60e9b6d6fd93ce1ca3dd0daab56b9c0afd561
Author: Miroslav Suchý <msuchy(a)redhat.com>
Date: Wed Jun 22 11:29:54 2011 +0200
Automatic commit of package [spacewalk-backend] release [1.5.36-1].
diff --git a/backend/spacewalk-backend.spec b/backend/spacewalk-backend.spec
index 6415c1b..8207238 100644
--- a/backend/spacewalk-backend.spec
+++ b/backend/spacewalk-backend.spec
@@ -11,7 +11,7 @@ Name: spacewalk-backend
Summary: Common programs needed to be installed on the Spacewalk servers/proxies
Group: Applications/Internet
License: GPLv2 and Python
-Version: 1.5.35
+Version: 1.5.36
Release: 1%{?dist}
URL: https://fedorahosted.org/spacewalk
Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz
@@ -681,6 +681,10 @@ rm -f %{rhnconf}/rhnSecret.py*
# $Id$
%changelog
+* Wed Jun 22 2011 Miroslav Suchý 1.5.36-1
+- in sat-sync ETA cut off miliseconds (msuchy(a)redhat.com)
+- make sat-sync ETA more precise (msuchy(a)redhat.com)
+
* Tue Jun 21 2011 Jan Pazdziora 1.5.35-1
- 676937 - allow to export all channels (msuchy(a)redhat.com)
- export from hosted does not know soft dependecies (msuchy(a)redhat.com)
diff --git a/rel-eng/packages/spacewalk-backend b/rel-eng/packages/spacewalk-backend
index 7ddcb68..bb799ce 100644
--- a/rel-eng/packages/spacewalk-backend
+++ b/rel-eng/packages/spacewalk-backend
@@ -1 +1 @@
-1.5.35-1 backend/
+1.5.36-1 backend/
commit 2de825e0c3e6a525bcc539a31e1be862535f2c39
Author: Miroslav Suchý <msuchy(a)redhat.com>
Date: Wed Jun 22 11:28:54 2011 +0200
in sat-sync ETA cut off miliseconds
diff --git a/backend/satellite_tools/satsync.py b/backend/satellite_tools/satsync.py
index fcd4d3d..7eda16d 100644
--- a/backend/satellite_tools/satsync.py
+++ b/backend/satellite_tools/satsync.py
@@ -1780,6 +1780,8 @@ Please contact your RHN representative""") % (generation, sat_cert.generation))
current_time = round(time.time())
# timedalta could not be multiplicated by float
remain_time = (datetime.timedelta(seconds=current_time-start_time))*((real_total_size*10000)/real_processed_size-10000)/10000
+ # cut off miliseconds
+ remain_time = datetime.timedelta(remain_time.days, remain_time.seconds)
log(1, messages.package_fetch_remain_size_time %
(self._bytes_to_fuzzy(processed_size), self._bytes_to_fuzzy(total_size), remain_time))
commit bef078151d3432dc6a89c521627933cc5f2cdb04
Author: Miroslav Suchý <msuchy(a)redhat.com>
Date: Wed Jun 22 11:26:49 2011 +0200
make sat-sync ETA more precise
diff --git a/backend/satellite_tools/satsync.py b/backend/satellite_tools/satsync.py
index f58c77e..fcd4d3d 100644
--- a/backend/satellite_tools/satsync.py
+++ b/backend/satellite_tools/satsync.py
@@ -1779,8 +1779,7 @@ Please contact your RHN representative""") % (generation, sat_cert.generation))
processed_size += size
current_time = round(time.time())
# timedalta could not be multiplicated by float
- remain_time = (datetime.timedelta(seconds=current_time-start_time))*((real_total_size*100)/real_processed_size-100)/100
-
+ remain_time = (datetime.timedelta(seconds=current_time-start_time))*((real_total_size*10000)/real_processed_size-10000)/10000
log(1, messages.package_fetch_remain_size_time %
(self._bytes_to_fuzzy(processed_size), self._bytes_to_fuzzy(total_size), remain_time))
12 years, 3 months
java/code
by Tomas Lestach
java/code/webapp/WEB-INF/pages/kickstart/wizard/profile/third.jsp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit f51797d66fdda163c2fc1386516c15fd36763032
Author: Tomas Lestach <tlestach(a)redhat.com>
Date: Tue Jun 21 14:13:42 2011 +0200
let finish the kickstart profile creation by the Enter button
diff --git a/java/code/webapp/WEB-INF/pages/kickstart/wizard/profile/third.jsp b/java/code/webapp/WEB-INF/pages/kickstart/wizard/profile/third.jsp
index b33c009..406b4e8 100644
--- a/java/code/webapp/WEB-INF/pages/kickstart/wizard/profile/third.jsp
+++ b/java/code/webapp/WEB-INF/pages/kickstart/wizard/profile/third.jsp
@@ -62,7 +62,7 @@ function movePrevious() {
<td colspan="2" align="right">
<input type="button" value="<bean:message key="wizard.jsp.previous.step" />" onclick="movePrevious();" />
- <input type="button" value="<bean:message key="wizard.jsp.finish.step" />" onclick="moveNext();" />
+ <input type="submit" value="<bean:message key="wizard.jsp.finish.step" />" onclick="moveNext();" />
</td>
</tr>
</table>
12 years, 3 months
Changes to 'refs/tags/spacewalk-java-1.5.48-1'
by Jan Pazdziora
Tag 'spacewalk-java-1.5.48-1' created by Jan Pazdziora <jpazdziora(a)redhat.com> at 2011-06-21 07:39 +0000
Tagging package [spacewalk-java] version [1.5.48-1] in directory [java/].
Changes since spacewalk-config-1.5.5-1:
Jan Pazdziora (1):
Automatic commit of package [spacewalk-java] release [1.5.48-1].
---
java/spacewalk-java.spec | 8 +++++++-
rel-eng/packages/spacewalk-java | 2 +-
2 files changed, 8 insertions(+), 2 deletions(-)
---
12 years, 3 months
java/spacewalk-java.spec rel-eng/packages
by Jan Pazdziora
java/spacewalk-java.spec | 8 +++++++-
rel-eng/packages/spacewalk-java | 2 +-
2 files changed, 8 insertions(+), 2 deletions(-)
New commits:
commit 69543765b4a76fc72a19040222e4c63fea056193
Author: Jan Pazdziora <jpazdziora(a)redhat.com>
Date: Tue Jun 21 09:39:35 2011 +0200
Automatic commit of package [spacewalk-java] release [1.5.48-1].
diff --git a/java/spacewalk-java.spec b/java/spacewalk-java.spec
index c312407..35cc0fb 100644
--- a/java/spacewalk-java.spec
+++ b/java/spacewalk-java.spec
@@ -17,7 +17,7 @@ Name: spacewalk-java
Summary: Spacewalk Java site packages
Group: Applications/Internet
License: GPLv2
-Version: 1.5.47
+Version: 1.5.48
Release: 1%{?dist}
URL: https://fedorahosted.org/spacewalk
Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz
@@ -546,6 +546,12 @@ fi
%{jardir}/postgresql-jdbc.jar
%changelog
+* Tue Jun 21 2011 Jan Pazdziora 1.5.48-1
+- 690842 - fix check for existing activation key (tlestach(a)redhat.com)
+- 648483 - fix system.provisionVirtualGuest NPE (tlestach(a)redhat.com)
+- 710959 - rename acl: not file_is_directory -> is_file (tlestach(a)redhat.com)
+- 708957 - remove RHN Satellite Proxy Release Notes link (tlestach(a)redhat.com)
+
* Fri Jun 17 2011 Jan Pazdziora 1.5.47-1
- 709724 - check session validity first, security token next
(mzazrivec(a)redhat.com)
diff --git a/rel-eng/packages/spacewalk-java b/rel-eng/packages/spacewalk-java
index 1d9ff10..5af5cbd 100644
--- a/rel-eng/packages/spacewalk-java
+++ b/rel-eng/packages/spacewalk-java
@@ -1 +1 @@
-1.5.47-1 java/
+1.5.48-1 java/
12 years, 3 months
Changes to 'refs/tags/spacewalk-config-1.5.5-1'
by Jan Pazdziora
Tag 'spacewalk-config-1.5.5-1' created by Jan Pazdziora <jpazdziora(a)redhat.com> at 2011-06-21 07:39 +0000
Tagging package [spacewalk-config] version [1.5.5-1] in directory [spacewalk/config/].
Changes since spacewalk-branding-1.5.2-1:
Jan Pazdziora (1):
Automatic commit of package [spacewalk-config] release [1.5.5-1].
---
rel-eng/packages/spacewalk-config | 2 +-
spacewalk/config/spacewalk-config.spec | 5 ++++-
2 files changed, 5 insertions(+), 2 deletions(-)
---
12 years, 3 months
rel-eng/packages spacewalk/config
by Jan Pazdziora
rel-eng/packages/spacewalk-config | 2 +-
spacewalk/config/spacewalk-config.spec | 5 ++++-
2 files changed, 5 insertions(+), 2 deletions(-)
New commits:
commit 555c16e36fd57fbb1f8828ad5c5cca51936c5164
Author: Jan Pazdziora <jpazdziora(a)redhat.com>
Date: Tue Jun 21 09:39:15 2011 +0200
Automatic commit of package [spacewalk-config] release [1.5.5-1].
diff --git a/rel-eng/packages/spacewalk-config b/rel-eng/packages/spacewalk-config
index 24368e7..148cee7 100644
--- a/rel-eng/packages/spacewalk-config
+++ b/rel-eng/packages/spacewalk-config
@@ -1 +1 @@
-1.5.4-1 spacewalk/config/
+1.5.5-1 spacewalk/config/
diff --git a/spacewalk/config/spacewalk-config.spec b/spacewalk/config/spacewalk-config.spec
index 3c9126f..b7d4951 100644
--- a/spacewalk/config/spacewalk-config.spec
+++ b/spacewalk/config/spacewalk-config.spec
@@ -1,6 +1,6 @@
Name: spacewalk-config
Summary: Spacewalk Configuration
-Version: 1.5.4
+Version: 1.5.5
Release: 1%{?dist}
URL: http://fedorahosted.org/spacewalk
Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz
@@ -105,6 +105,9 @@ chgrp apache /etc/rhn /etc/rhn/rhn.conf /etc/rhn/cluster.ini 2> /dev/null || :
chmod o-rwx /etc/rhn/rhn.conf* /etc/rhn/cluster.ini* /etc/sysconfig/rhn/backup-* /var/lib/rhn/rhn-satellite-prep/* 2> /dev/null || :
%changelog
+* Tue Jun 21 2011 Jan Pazdziora 1.5.5-1
+- Silence chgrp/chmod, during first installation.
+
* Tue May 17 2011 Miroslav Suchý 1.5.4-1
- migrate .htaccess files to apache core configuration
12 years, 3 months
Changes to 'refs/tags/spacewalk-branding-1.5.2-1'
by Jan Pazdziora
Tag 'spacewalk-branding-1.5.2-1' created by Jan Pazdziora <jpazdziora(a)redhat.com> at 2011-06-21 07:38 +0000
Tagging package [spacewalk-branding] version [1.5.2-1] in directory [branding/].
Changes since spacewalk-backend-1.5.35-1:
Jan Pazdziora (1):
Automatic commit of package [spacewalk-branding] release [1.5.2-1].
---
branding/spacewalk-branding.spec | 5 ++++-
rel-eng/packages/spacewalk-branding | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
---
12 years, 3 months
branding/spacewalk-branding.spec rel-eng/packages
by Jan Pazdziora
branding/spacewalk-branding.spec | 5 ++++-
rel-eng/packages/spacewalk-branding | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
New commits:
commit 882d3a497c3ccbfc2e06cd485d7da1f7aeeab54b
Author: Jan Pazdziora <jpazdziora(a)redhat.com>
Date: Tue Jun 21 09:38:51 2011 +0200
Automatic commit of package [spacewalk-branding] release [1.5.2-1].
diff --git a/branding/spacewalk-branding.spec b/branding/spacewalk-branding.spec
index 0013fe3..0425cf5 100644
--- a/branding/spacewalk-branding.spec
+++ b/branding/spacewalk-branding.spec
@@ -1,5 +1,5 @@
Name: spacewalk-branding
-Version: 1.5.1
+Version: 1.5.2
Release: 1%{?dist}
Summary: Spacewalk branding data
@@ -83,6 +83,9 @@ rm -rf %{buildroot}
%doc LICENSE
%changelog
+* Tue Jun 21 2011 Jan Pazdziora 1.5.2-1
+- 708957 - remove RHN Satellite Proxy Release Notes link (tlestach(a)redhat.com)
+
* Tue May 10 2011 Jan Pazdziora 1.5.1-1
- 484895 - Point the release notes dispatcher to fedorahosted.org.
diff --git a/rel-eng/packages/spacewalk-branding b/rel-eng/packages/spacewalk-branding
index 92a0c48..da2d6b2 100644
--- a/rel-eng/packages/spacewalk-branding
+++ b/rel-eng/packages/spacewalk-branding
@@ -1 +1 @@
-1.5.1-1 branding/
+1.5.2-1 branding/
12 years, 3 months
Changes to 'refs/tags/spacewalk-backend-1.5.35-1'
by Jan Pazdziora
Tag 'spacewalk-backend-1.5.35-1' created by Jan Pazdziora <jpazdziora(a)redhat.com> at 2011-06-21 07:38 +0000
Tagging package [spacewalk-backend] version [1.5.35-1] in directory [backend/].
Changes since rhnpush-5.5.28-1:
Jan Pazdziora (1):
Automatic commit of package [spacewalk-backend] release [1.5.35-1].
---
backend/spacewalk-backend.spec | 6 +++++-
rel-eng/packages/spacewalk-backend | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
---
12 years, 3 months
backend/spacewalk-backend.spec rel-eng/packages
by Jan Pazdziora
backend/spacewalk-backend.spec | 6 +++++-
rel-eng/packages/spacewalk-backend | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
New commits:
commit 5778ace946b0af74e75d3aa7337ae1c085b023d4
Author: Jan Pazdziora <jpazdziora(a)redhat.com>
Date: Tue Jun 21 09:38:07 2011 +0200
Automatic commit of package [spacewalk-backend] release [1.5.35-1].
diff --git a/backend/spacewalk-backend.spec b/backend/spacewalk-backend.spec
index c3c3eca..6415c1b 100644
--- a/backend/spacewalk-backend.spec
+++ b/backend/spacewalk-backend.spec
@@ -11,7 +11,7 @@ Name: spacewalk-backend
Summary: Common programs needed to be installed on the Spacewalk servers/proxies
Group: Applications/Internet
License: GPLv2 and Python
-Version: 1.5.34
+Version: 1.5.35
Release: 1%{?dist}
URL: https://fedorahosted.org/spacewalk
Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz
@@ -681,6 +681,10 @@ rm -f %{rhnconf}/rhnSecret.py*
# $Id$
%changelog
+* Tue Jun 21 2011 Jan Pazdziora 1.5.35-1
+- 676937 - allow to export all channels (msuchy(a)redhat.com)
+- export from hosted does not know soft dependecies (msuchy(a)redhat.com)
+
* Mon Jun 13 2011 Jan Pazdziora 1.5.34-1
- 711805 - explicitly define the boolean behaviour of the object.
diff --git a/rel-eng/packages/spacewalk-backend b/rel-eng/packages/spacewalk-backend
index 68d6adb..7ddcb68 100644
--- a/rel-eng/packages/spacewalk-backend
+++ b/rel-eng/packages/spacewalk-backend
@@ -1 +1 @@
-1.5.34-1 backend/
+1.5.35-1 backend/
12 years, 3 months