latest python-cheetah breaks koji.
by Steve Traylen
Hi,
I would just submit a bug but unsure to which package to submit in
the first instance.
On FC11 with
Hi
With,
koji-hub-1.3.1-2.fc11.noarch
koji-1.3.1-2.fc11.noarch
koji-builder-1.3.1-2.fc11.noarch
koji-web-1.3.1-2.fc11.noarch
koji-utils-1.3.1-2.fc11.noarch
python-cheetah-2.0.1-5.fc11.x86_64
then everything is good.
Updating only python-cheetah to
python-cheetah-2.2.2-1.fc11.x86_64
then python-web dumps to the browser as below, full traceback attached.
Downgrading back to
python-cheetah-2.0.1-5.fc11.x86_64
then all is good.
File "/usr/lib64/python2.6/site-packages/Cheetah/Compiler.py", line
1588, in __init__
source = unicode(source)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position
374: ordinal not in range(128)
full back trace attached.
Steve
--
Steve Traylen
13 years, 8 months
Adding builders without NFS access
by Josh Boyer
Hi All,
I believe that currently any koji builder needs to have read-only access to
/mnt/koji, normally realized by NFS mounting. I am wondering if there is a
way to add builders to a koji instance without requiring this.
In my thinking, this essentially means that all builders must be colocated in
the same lab. That is a bit unfortunate, given that adding builders outside
of the local lab is one of the things that could really help a secondary arch.
Has any work gone into not requiring /mnt/koji to the builders?
Thanks,
josh
13 years, 8 months
Pungi exact package version
by Thomas S Hatch
I am building an auto install iso for some repeated, specialized deployments
and I have run into a problem. I am building them with pungi and using the
latest packages from fedora 11, but a bug in the 2.6.30 kernel seems to be
preventing me from installing from cdrom. Anaconda fails to find the cdrom
drive on the hardware I am using (IBM hs22 bladecenter). The problem is
fixed by using a 2.6.29 kernel. So I was hoping that I could build my
installer iso with pungi, and the updates repository, but exclude the latest
kernel so a 2.6.29 kernel is used. Is this possible without maintaining a
modified local copy of the updates repository?
-Tom Hatch
13 years, 8 months
ascii mergerepo error in local koji instance
by Josh Boyer
I'm seeing this error when trying to do a newRepo task on my local
koji server, using rawhide as an external repo:
2101/14674 - python-decoratortools-1.7-4.fc12.noarch
2102/14674 - ruby-atk-0.19.1-2.fc12.ppc
Traceback (most recent call last):
File "/usr/libexec/kojid/mergerepos", line 241, in <module>
main(sys.argv[1:])
File "/usr/libexec/kojid/mergerepos", line 236, in main
merge.write_metadata()
File "/usr/libexec/kojid/mergerepos", line 216, in write_metadata
mdgen.doPkgMetadata()
File "/usr/lib/python2.6/site-packages/createrepo/__init__.py", line
364, in doPkgMetadata
self.writeMetadataDocs(packages)
File "/usr/lib/python2.6/site-packages/createrepo/__init__.py", line
527, in writeMetadataDocs
self.primaryfile.write(po.xml_dump_primary_metadata())
File "/usr/lib/python2.6/site-packages/yum/packages.py", line 1015,
in xml_dump_primary_metadata
msg += misc.to_unicode(self._dump_format_items())
File "/usr/lib/python2.6/site-packages/yum/packages.py", line 894,
in _dump_format_items
msg += self._dump_pco('provides')
File "/usr/lib/python2.6/site-packages/yum/packages.py", line 919,
in _dump_pco
msg += pcostring
UnicodeDecodeError: 'ascii' codec can't decode byte 0xec in position
28: ordinal not in range(128)
[root@koji 97]#
The builders and hub are all running a fully updated F11. This is the
first newRepo task after the repo addition, so it's all purely from
rawhide.
I see that there was a similar report of this in the past, but I don't
see a resolution? Is there a patch I need to apply, or do I have to
block the erroring packages in koji, or?
Help would be appreciated. (I'm also confused why the main koji
instance isn't hitting this).
josh
13 years, 8 months
mock rpmdb version issue with epel-5-i386 target
by Alan Franzoni
Hello,
I'm trying to setup a mock chroot for usage with the epel-5-i386
target. I had considered mach, which I have already used in the past,
but since mock seems newer, better mantained an more integrated with
fedora and some other tools which look to me very useful and promising
( Cobbler, Koan, Koji ), I wanted to give it a shot.
But I seem to have an issue with it. I started with a fresh FC11
install, with the updates repo enabled, and installed mock from the
repos;
version 0.9.17 installed cleanly, and seems to be the latest version.
My issue seems related to different rpmdb versions inside and outside
the chroot which gets created. Take the following output:
It seems the rpmdb of the chroot has been created with an rpm
employing a different format ( I can assume it's the 'host' system rpm
), hence leading to a format mismatch which prevents from using rpmdb
from inside the chroot.
I have tinkered around for a little, but I couldn't find an easy
solution (beyond installing everything from outside using mock
--install, of course). Hence I've got some questions:
Is that an intended behaviour? Is the rpmdb supposed to be converted
back to the proper format later on in the deployment process, if using
mock for building packages which be used later on in a possibly
pre-build system?
Alan Franzoni
13 years, 8 months
[PATCH] pungi: Fix dependency resolution to recurse properly.
by Bill Nottingham
It wasn't properly recusing in the --selfhosting or --fulltree cases
before, leading to potenial broken deps.
Bill
Signed-off-by: Bill Nottingham <notting(a)redhat.com>
---
src/pypungi/__init__.py | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/src/pypungi/__init__.py b/src/pypungi/__init__.py
index 26c8bdf..aec3c8c 100644
--- a/src/pypungi/__init__.py
+++ b/src/pypungi/__init__.py
@@ -255,6 +255,7 @@ class Pungi(pypungi.PungiBase):
reqs = po.requires
provs = po.provides
+ added = []
for req in reqs:
if self.resolved_deps.has_key(req):
@@ -275,8 +276,10 @@ class Pungi(pypungi.PungiBase):
for dep in depsack.returnNewestByNameArch():
self.ayum.tsInfo.addInstall(dep)
self.logger.info('Added %s.%s for %s.%s' % (dep.name, dep.arch, po.name, po.arch))
-
+ added.append(dep)
self.resolved_deps[req] = None
+ for add in added:
+ self.getPackageDeps(add)
def getPackagesFromGroup(self, group):
"""Get a list of package names from a ksparser group object
@@ -483,6 +486,7 @@ class Pungi(pypungi.PungiBase):
for txmbr in self.ayum.tsInfo:
if txmbr.po.arch != 'src' and txmbr.po not in self.polist:
self.polist.append(txmbr.po)
+ self.getPackageDeps(txmbr.po)
self.srpms_build = list(self.srpmpolist)
# Now that we've resolved deps, refresh the source rpm list
self.getSRPMList()
@@ -508,6 +512,7 @@ class Pungi(pypungi.PungiBase):
for txmbr in self.ayum.tsInfo:
if txmbr.po.arch != 'src' and txmbr.po not in self.polist:
self.polist.append(txmbr.po)
+ self.getPackageDeps(po)
self.srpms_fulltree = list(self.srpmpolist)
# Now that we've resolved deps, refresh the source rpm list
self.getSRPMList()
--
1.6.4.3
13 years, 8 months
Re: [Errno 10] No child processes
by Jian Lee
Hi, xiao li
This is very normally error.
Maybe some configure is wrong, create a builder, it have
configure look like following:
-------------------------------------------
[root@builder4-x86 ~]# grep mockdir /etc/kojid/kojid.conf
mockdir=/dist/mock
[root@builder4-x86 ~]# ll -d /dist/mock/
drwxrwsr-x 6 root mock 4096 09-14 09:31 /dist/mock/
[root@builder4-x86 ~]# grep mock /etc/group
mock:x:110:kojibuilder
[root@builder4-x86 ~]# grep kojibuilder /etc/passwd
kojibuilder:x:101:107::/builddir:/bin/bash
[root@builder4-x86 ~]# grep kojibuilder /etc/group
mock:x:110:kojibuilder
kojibuilder:x:107:
=============================
1. must have kojibuilder user and mock group
2. kojibuilder must have privileges to mockdir
a chinese help maybe found on my wiki :
http://jianlee.ylinux.org/Computer/%E6%9C%8D%E5%8A%A1%E5%99%A8/koji.html#...
2009/9/11 xiao li <lixiao986(a)gmail.com>:
> When I build srpm.I met a problem.It shows errno 10 and no child
> processes.The log follows,
> 'Traceback (most recent call last):\n File "/usr/sbin/kojid", line 1275,
> in runTask\n response = (handler.run(),)\n File "/usr/sbin/kojid", line
> 1351, in run\n return self.handler(*self.params,**self.opts)\n File
> "/usr/sbin/kojid", line 2009, in handler\n broot.init()\n File
> "/usr/sbin/kojid", line 467, in init\n rv = self.mock([\'--init\'])\n
> File "/usr/sbin/kojid", line 389, in mock\n status = os.waitpid(pid,
> os.WNOHANG)\nOSError: [Errno 10] No child processes\n'>
> Thanks for your help.
>
--
Jian Lee [ http://jianlee.ylinux.org ]
13 years, 8 months
Can't Create repos
by NGUYEN VAN TAN
I'm trying to construct koji-server on Fedora 10, but I got an error.
Kojira can't create repos. It is always failed when try to create repos.
2009-09-03 14:06:44,449 [INFO] koji.repo.manager: Created newRepo task 116 for tag 2 (dist-foo-build)
2009-09-03 14:07:00,198 [INFO] koji.repo.manager: Found repo 24, state=INIT
2009-09-03 14:07:16,096 [INFO] koji.repo.manager: Problem: newRepo task 116 for tag 2 is FAILED
2009-09-03 14:10:00,128 [INFO] koji.repo.manager: Created newRepo task 121 for tag 2 (dist-foo-build)
2009-09-03 14:10:05,331 [INFO] koji.repo.manager: Problem: newRepo task 121 for tag 2 is FAILED
2009-09-03 14:10:05,397 [INFO] koji.repo.manager: Found repo 25, state=INIT
[root@localhost kojibuilder1]# tail /var/log/kojira.log
2009-09-03 14:07:16,096 [INFO] koji.repo.manager: Problem: newRepo task 116 for tag 2 is FAILED
2009-09-03 14:10:00,128 [INFO] koji.repo.manager: Created newRepo task 121 for tag 2 (dist-foo-build)
2009-09-03 14:10:05,331 [INFO] koji.repo.manager: Problem: newRepo task 121 for tag 2 is FAILED
2009-09-03 14:10:05,397 [INFO] koji.repo.manager: Found repo 25, state=INIT
2009-09-03 14:13:05,745 [INFO] koji.repo.manager: Created newRepo task 128 for tag 2 (dist-foo-build)
2009-09-03 14:13:21,376 [INFO] koji.repo.manager: Found repo 26, state=INIT
2009-09-03 14:13:37,095 [INFO] koji.repo.manager: Problem: newRepo task 128 for tag 2 is FAILED
2009-09-03 14:16:23,676 [INFO] koji.repo.manager: Created newRepo task 133 for tag 2 (dist-foo-build)
2009-09-03 14:16:39,445 [INFO] koji.repo.manager: Problem: newRepo task 133 for tag 2 is FAILED
2009-09-03 14:16:39,492 [INFO] koji.repo.manager: Found repo 27, state=INIT
Anyone got this error? And Could you tell me how to solve it?
Thanks in advance.
Nguyễn Văn Tân
Thiết kế ngay một Pingbox độc đáo cho riêng bạn! Tạo một nơi để chat trên blog là chuyện nhỏ. http://vn.messenger.yahoo.com/pingbox/
13 years, 8 months
Về: Fedora-buildsys-list Digest, Vol 55, Issue 2
by NGUYEN VAN TAN
Thank you, I saw kojid log, but I don't understand what it mean.
2009-09-06 14:18:54,311 [INFO] koji.build.TaskManager: open task: {'waiting': True, 'id': 7, 'weight': 0.10000000000000001}
2009-09-06 14:18:54,398 [WARNING] koji.build.TaskManager: TRACEBACK: Traceback (most recent call last):
File "/usr/sbin/kojid", line 1275, in runTask
response = (handler.run(),)
File "/usr/sbin/kojid", line 1351, in run
return self.handler(*self.params,**self.opts)
File "/usr/sbin/kojid", line 2560, in handler
for f in os.listdir(self.datadir):
OSError: [Errno 2] No such file or directory: '/tmp/koji/tasks/8/8/repo/repodata'
2009-09-06 14:18:54,450 [WARNING] koji.build.TaskManager: TRACEBACK: Traceback (most recent call last):
File "/usr/sbin/kojid", line 1275, in runTask
response = (handler.run(),)
File "/usr/sbin/kojid", line 1351, in run
return self.handler(*self.params,**self.opts)
File "/usr/sbin/kojid", line 2560, in handler
for f in os.listdir(self.datadir):
OSError: [Errno 2] No such file or directory: '/tmp/koji/tasks/9/9/repo/repodata'
2009-09-06 14:19:09,407 [INFO] koji.build.TaskManager: pids: {7: 10867, 8: 10873, 9: 10877}
2009-09-06 14:19:09,417 [INFO] koji.build.TaskManager: open task: {'waiting': True, 'id': 7, 'weight': 0.10000000000000001, 'alert': True}
2009-09-06 14:19:09,418 [INFO] koji.build.TaskManager: Waking up task: {'waiting': True, 'id': 7, 'weight': 0.10000000000000001, 'alert': True}
2009-09-06 14:19:09,424 [INFO] koji.build.TaskManager: Task 8 (pid 10873) exited with status 0
2009-09-06 14:19:09,582 [WARNING] koji.build.TaskManager: FAULT:
Traceback (most recent call last):
File "/usr/sbin/kojid", line 1275, in runTask
response = (handler.run(),)
File "/usr/sbin/kojid", line 1351, in run
return self.handler(*self.params,**self.opts)
File "/usr/sbin/kojid", line 2517, in handler
results = self.wait(subtasks.values(), all=True, failany=True)
File "/usr/sbin/kojid", line 1438, in wait
return dict(session.host.taskWaitResults(self.id,subtasks))
File "/usr/lib/python2.5/site-packages/koji/__init__.py", line 1255, in __call__
return self.__func(self.__name,args,opts)
File "/usr/lib/python2.5/site-packages/koji/__init__.py", line 1501, in _callMethod
raise err
Fault: <Fault 1: 'Traceback (most recent call last):
File "/usr/sbin/kojid", line 1275, in runTask
response = (handler.run(),)
File "/usr/sbin/kojid", line 1351, in run
return self.handler(*self.params,**self.opts)
File "/usr/sbin/kojid", line 2560, in handler
for f in os.listdir(self.datadir):
OSError: [Errno 2] No such file or directory: \'/tmp/koji/tasks/8/8/repo/repodata\'
'>
2009-09-06 14:19:09,610 [INFO] koji.build.TaskManager: Expiring subsession 27 (task 8)
2009-09-06 14:19:09,666 [INFO] koji.build.TaskManager: Task 9 (pid 10877) exited with status 0
2009-09-06 14:19:09,694 [INFO] koji.build.TaskManager: Expiring subsession 28 (task 9)
2009-09-06 14:19:25,813 [INFO] koji.build.TaskManager: pids: {7: 10867}
2009-09-06 14:19:25,943 [INFO] koji.build.TaskManager: Task 7 (pid 10867) exited with status 0
2009-09-06 14:19:25,973 [INFO] koji.build.TaskManager: Expiring subsession 26 (task 7)
I also saw kojira log, but I can't find the what problem is.
2009-09-06 13:09:23,652 [INFO] koji.repo.manager: Found repo 24, state=INIT
2009-09-06 13:10:07,760 [INFO] koji.repo.manager: Problem: newRepo task 116 for tag 2 is FAILED
2009-09-06 13:12:19,724 [INFO] koji.repo.manager: Created newRepo task 121 for tag 2 (dist-foo-build)
2009-09-06 13:12:25,373 [INFO] koji.repo.manager: Found repo 25, state=INIT
2009-09-06 13:12:32,349 [INFO] koji.repo.manager: Problem: newRepo task 121 for tag 2 is FAILED
2009-09-06 14:07:52,959 [INFO] koji: Entering main loop
2009-09-06 14:14:26,191 [INFO] koji.repo.manager: Created newRepo task 1 for tag 2 (dist-foo-build)
2009-09-06 14:14:36,261 [INFO] koji.repo.manager: Found repo 1, state=INIT
2009-09-06 14:15:06,624 [INFO] koji.repo.manager: Problem: newRepo task 1 for tag 2 is FAILED
2009-09-06 14:15:06,654 [INFO] koji.repo.manager: Created newRepo task 4 for tag 2 (dist-foo-build)
2009-09-06 14:15:21,807 [INFO] koji.repo.manager: Problem: newRepo task 4 for tag 2 is FAILED
2009-09-06 14:15:21,868 [INFO] koji.repo.manager: Found repo 2, state=INIT
2009-09-06 14:18:24,378 [INFO] koji.repo.manager: Created newRepo task 7 for tag 2 (dist-foo-build)
2009-09-06 14:18:43,487 [INFO] koji.repo.manager: Found repo 3, state=INIT
2009-09-06 14:19:11,220 [INFO] koji.repo.manager: Problem: newRepo task 7 for tag 2 is FAILED
2009-09-06 14:21:41,670 [INFO] koji.repo.manager: Created newRepo task 10 for tag 2 (dist-foo-build)
2009-09-06 14:22:01,882 [INFO] koji.repo.manager: Found repo 4, state=INIT
2009-09-06 14:22:17,139 [INFO] koji.repo.manager: Problem: newRepo task 10 for tag 2 is FAILED
I checked if /tmp/koji/tasks/8/8/repo/repodata exist and this folder is not exist. Do you know this folder would be created by what kind of component and Why it could be created yet?
And when here my tasks
ID Pri Owner State Arch Name
1 15 kojira FAILED noarch newRepo [kojibuilder1]
2 14 kojira FAILED noarch +createrepo [kojibuilder1]
3 14 kojira FAILED noarch +createrepo [kojibuilder1]
4 15 kojira FAILED noarch newRepo [kojibuilder1]
5 14 kojira FAILED noarch +createrepo [kojibuilder1]
6 14 kojira CANCELED noarch +createrepo [kojibuilder1]
Do you know why kojira can't create repos and solution to solve it.
Thanks in advance
Nguyễn Văn Tân
--- Ngày Thứ 5, 3/09/09, fedora-buildsys-list-request(a)redhat.com <fedora-buildsys-list-request(a)redhat.com> đã viết:
Từ: fedora-buildsys-list-request(a)redhat.com <fedora-buildsys-list-request(a)redhat.com>
Chủ đề: Fedora-buildsys-list Digest, Vol 55, Issue 2
Đến: fedora-buildsys-list(a)redhat.com
Ngày: Thứ Năm, 3 tháng 9, 2009, 23:00
Send Fedora-buildsys-list mailing list submissions to
fedora-buildsys-list(a)redhat.com
To subscribe or unsubscribe via the World Wide Web, visit
https://www.redhat.com/mailman/listinfo/fedora-buildsys-list
or, via email, send a message with subject or body 'help' to
fedora-buildsys-list-request(a)redhat.com
You can reach the person managing the list at
fedora-buildsys-list-owner(a)redhat.com
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Fedora-buildsys-list digest..."
Today's Topics:
1. Can't Create repos (NGUYEN VAN TAN)
2. Re: Can't Create repos (rotru(a)br.ibm.com)
----------------------------------------------------------------------
Message: 1
Date: Thu, 3 Sep 2009 04:31:37 -0700 (PDT)
From: NGUYEN VAN TAN <tan20bk(a)yahoo.com>
Subject: Can't Create repos
To: fedora-buildsys-list(a)redhat.com
Message-ID: <532535.63316.qm(a)web62403.mail.re1.yahoo.com>
Content-Type: text/plain; charset="utf-8"
I'm trying to construct koji-server on Fedora 10, but I got an error.
Kojira can't create repos. It is always failed when try to create repos.
2009-09-03 14:06:44,449 [INFO] koji.repo.manager: Created newRepo task 116 for tag 2 (dist-foo-build)
2009-09-03 14:07:00,198 [INFO] koji.repo.manager: Found repo 24, state=INIT
2009-09-03 14:07:16,096 [INFO] koji.repo.manager: Problem: newRepo task 116 for tag 2 is FAILED
2009-09-03 14:10:00,128 [INFO] koji.repo.manager: Created newRepo task 121 for tag 2 (dist-foo-build)
2009-09-03 14:10:05,331 [INFO] koji.repo.manager: Problem: newRepo task 121 for tag 2 is FAILED
2009-09-03 14:10:05,397 [INFO] koji.repo.manager: Found repo 25, state=INIT
[root@localhost kojibuilder1]# tail /var/log/kojira.log
2009-09-03 14:07:16,096 [INFO] koji.repo.manager: Problem: newRepo task 116 for tag 2 is FAILED
2009-09-03 14:10:00,128 [INFO] koji.repo.manager: Created newRepo task 121 for tag 2 (dist-foo-build)
2009-09-03 14:10:05,331 [INFO] koji.repo.manager: Problem: newRepo task 121 for tag 2 is FAILED
2009-09-03 14:10:05,397 [INFO] koji.repo.manager: Found repo 25, state=INIT
2009-09-03 14:13:05,745 [INFO] koji.repo.manager: Created newRepo task 128 for tag 2 (dist-foo-build)
2009-09-03 14:13:21,376 [INFO] koji.repo.manager: Found repo 26, state=INIT
2009-09-03 14:13:37,095 [INFO] koji.repo.manager: Problem: newRepo task 128 for tag 2 is FAILED
2009-09-03 14:16:23,676 [INFO] koji.repo.manager: Created newRepo task 133 for tag 2 (dist-foo-build)
2009-09-03 14:16:39,445 [INFO] koji.repo.manager: Problem: newRepo task 133 for tag 2 is FAILED
2009-09-03 14:16:39,492 [INFO] koji.repo.manager: Found repo 27, state=INIT
Anyone got this error? And Could you tell me how to solve it?
Thanks in advance.
Nguyễn Văn Tân
Thiết kế ngay một Pingbox độc đáo cho riêng bạn! Tạo một nơi để chat trên blog là chuyện nhỏ. http://vn.messenger.yahoo.com/pingbox/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: https://www.redhat.com/archives/fedora-buildsys-list/attachments/20090903...
------------------------------
Message: 2
Date: Thu, 3 Sep 2009 09:13:51 -0300
From: rotru(a)br.ibm.com
Subject: Re: Can't Create repos
To: tannv84(a)gmail.com, Discussion of Fedora build system
<fedora-buildsys-list(a)redhat.com>
Message-ID:
<OF07B143D9.DA41587A-ON83257626.00424D27-83257626.00436FE3(a)br.ibm.com>
Content-Type: text/plain; charset="utf-8"
I have already had this problem. Re-check the repo directory permission
(usually in /mnt/koji) and selinux linux permissions as well.
I have selinux disabled, to avoid problems.
I may find more usefull information in kojid.log.
Rodrigo Trujillo
From:
NGUYEN VAN TAN <tan20bk(a)yahoo.com>
To:
fedora-buildsys-list(a)redhat.com
Date:
03/09/2009 08:29
Subject:
Can't Create repos
I'm trying to construct koji-server on Fedora 10, but I got an error.
Kojira can't create repos. It is always failed when try to create repos.
2009-09-03 14:06:44,449 [INFO] koji.repo.manager: Created newRepo task 116
for tag 2 (dist-foo-build)
2009-09-03 14:07:00,198 [INFO] koji.repo.manager: Found repo 24,
state=INIT
2009-09-03 14:07:16,096 [INFO] koji.repo.manager: Problem: newRepo task
116 for tag 2 is FAILED
2009-09-03 14:10:00,128 [INFO] koji.repo.manager: Created newRepo task 121
for tag 2 (dist-foo-build)
2009-09-03 14:10:05,331 [INFO] koji.repo.manager: Problem: newRepo task
121 for tag 2 is FAILED
2009-09-03 14:10:05,397 [INFO] koji.repo.manager: Found repo 25,
state=INIT
[root@localhost kojibuilder1]# tail /var/log/kojira.log
2009-09-03 14:07:16,096 [INFO] koji.repo.manager: Problem: newRepo task
116 for tag 2 is FAILED
2009-09-03 14:10:00,128 [INFO] koji.repo.manager: Created newRepo task 121
for tag 2 (dist-foo-build)
2009-09-03 14:10:05,331 [INFO] koji.repo.manager: Problem: newRepo task
121 for tag 2 is FAILED
2009-09-03 14:10:05,397 [INFO] koji.repo.manager: Found repo 25,
state=INIT
2009-09-03 14:13:05,745 [INFO] koji.repo.manager: Created newRepo task 128
for tag 2 (dist-foo-build)
2009-09-03 14:13:21,376 [INFO] koji.repo.manager: Found repo 26,
state=INIT
2009-09-03 14:13:37,095 [INFO] koji.repo.manager: Problem: newRepo task
128 for tag 2 is FAILED
2009-09-03 14:16:23,676 [INFO] koji.repo.manager: Created newRepo task 133
for tag 2 (dist-foo-build)
2009-09-03 14:16:39,445 [INFO] koji.repo.manager: Problem: newRepo task
133 for tag 2 is FAILED
2009-09-03 14:16:39,492 [INFO] koji.repo.manager: Found repo 27,
state=INIT
Anyone got this error? And Could you tell me how to solve it?
Thanks in advance.
Nguyễn Văn Tân
Yahoo! Mail nay NHANH HƠN - Thử ngay!--
Fedora-buildsys-list mailing list
Fedora-buildsys-list(a)redhat.com
https://www.redhat.com/mailman/listinfo/fedora-buildsys-list
-------------- next part --------------
An HTML attachment was scrubbed...
URL: https://www.redhat.com/archives/fedora-buildsys-list/attachments/20090903...
------------------------------
--
Fedora-buildsys-list mailing list
Fedora-buildsys-list(a)redhat.com
https://www.redhat.com/mailman/listinfo/fedora-buildsys-list
End of Fedora-buildsys-list Digest, Vol 55, Issue 2
***************************************************
nữ nghĩ gì khi đàn ông rửa bát và giặt quần áo? Xem mọi người nghĩ gì trên Yahoo! Hỏi & Đáp. http://vn.answers.yahoo.com
13 years, 8 months
Offline installation with 3rd party repositories
by Arthur Lutz
Hi,
I'm using pungi to generate an installer, and now that I've added
third party repos and corresponding packages, it doesn't seem to
work.
The pungi command doesn't complain too much, but when launching the
installer in a disconnected virtual machine, after the partitionning
I get a "Some repos require network access".
Is pungi supposed to handle this usecase scenario ? If so where should
I look to correct this bug ?
Thanks in advance.
Arthur
--
Arthur LUTZ LOGILAB, Paris (France)
http://www.logilab.com http://www.logilab.fr http://www.logilab.org
Développement logiciel avancé - Intelligence Artificielle - Formations
CubicWeb, the semantic web framework: http://www.cubicweb.org
13 years, 8 months