[PATCH] move workdir from /tmp/koji/ to /var/tmp/koji/
by Dennis Gilmore
moving the workdir is needed as /tmp can be quite small with /tmp on tmpfs
Signed-off-by: Dennis Gilmore <dennis(a)ausil.us>
---
builder/kojid | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/builder/kojid b/builder/kojid
index f101e0f..14309bb 100755
--- a/builder/kojid
+++ b/builder/kojid
@@ -3657,7 +3657,7 @@ def get_options():
'log_level': None,
'topdir': '/mnt/koji',
'topurl': None,
- 'workdir': '/tmp/koji',
+ 'workdir': '/var/tmp/koji',
'pluginpath': '/usr/lib/koji-builder-plugins',
'mockdir': '/var/lib/mock',
'mockuser': 'kojibuilder',
--
1.9.3
9 years, 6 months
[PATCH] support ppc64le in mash
by Mark Hamzy
Add support for the ppc64le architecture in mash.
---
mash/arch.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/mash/arch.py b/mash/arch.py
index a2b0f79..cbeb24b 100644
--- a/mash/arch.py
+++ b/mash/arch.py
@@ -19,6 +19,7 @@ compat = { "i386" : ("athlon", "i686", "i586", "i486", "i386", "noarch"),
"ia64" : ("ia64", "noarch"),
"ppc" : ("ppc", "noarch"),
"ppc64" : ("ppc64p7", "ppc64pseries", "ppc64iseries", "ppc64", "noarch"),
+ "ppc64le" : ("ppc64le", "noarch"),
"s390" : ("s390", "noarch"),
"s390x" : ("s390x", "noarch"),
"sparc" : ("sparcv9v", "sparcv9", "sparcv8", "sparc", "noarch"),
--
1.9.0
9 years, 6 months
build system used for epel7
by Farkas Levente
hi,
what is the base architecture used under the current fedora build
system? since currently on rhel6 i can't update mock because of this bug:
https://bugzilla.redhat.com/show_bug.cgi?id=1088966
on the other hand if i don't upgrade mock i can't build rhel7 packages
on an rhel6 host since mock 1.1.22 has other bug which already fixed on
newer mock.
so what is the current os version, kernel, mock version on fedora
buildsys. and these system can be build epel6 and epel7 packages at the
same time?
thanks in advance.
regards.
--
Levente "Si vis pacem para bellum!"
9 years, 6 months
Re: Preventing pungi from including all langpacks?
by David Ward
On 05/09/2014 04:35 PM, Dennis Gilmore wrote:
> On 05/07/2014 02:21 PM, David Ward wrote:
>> With these changes ...
>>
>> * https://bugzilla.redhat.com/show_bug.cgi?id=879030
>> *
>> https://git.fedorahosted.org/cgit/pungi.git/commit/?id=cd75bc48756250fff2...
>>
>> ... how do I compose an image (for Fedora 20) that does not include
>> every language pack? A very simple kickstart script that only
>> includes '@core' in the '%packages' section will now pull in every
>> langpack for hunspell, for example. I am trying to reduce the size of
>> the resulting image.
>>
>> Thanks,
>>
>> David
>
> you should be able to add "-hunspell-*" to the packages section of the
> kickstart
>
> Dennis
Unfortunately that removes all of the language packs, including
hunspell-en-US, and then anaconda throws an error during the installation.
I've tried this:
-hunspell-*
hunspell-en*
but that doesn't seem to work either.
David
9 years, 7 months
[PATCH] Added -q option to koji moshimoshi for suppressing output
by Pat Riehecky
From: Pat Riehecky <riehecky(a)fnal.gov>
---
cli/koji | 18 ++++++++++--------
1 files changed, 10 insertions(+), 8 deletions(-)
diff --git a/cli/koji b/cli/koji
index 088c505..2dd3dcb 100755
--- a/cli/koji
+++ b/cli/koji
@@ -6138,20 +6138,22 @@ def handle_moshimoshi(options, session, args):
"Introduce yourself"
usage = _("usage: %prog moshimoshi [options]")
parser = OptionParser(usage=usage)
+ parser.add_option("-q", action="store_true", help=_("only print unsuccessful connections"))
(options, args) = parser.parse_args(args)
if len(args) != 0:
parser.error(_("This command takes no arguments"))
assert False
activate_session(session)
u = session.getLoggedInUser()
- if not u:
- print "Not authenticated"
- u = {'name' : 'anonymous user'}
- print "%s, %s!" % (random.choice(greetings), u["name"],)
- print ""
- print "You are using the hub at %s" % (session.baseurl,)
- if u.get("krb_principal", None) is not None:
- print "Authenticated via Kerberos principal %s" % (u["krb_principal"])
+ if not parser.q:
+ if not u:
+ print "Not authenticated"
+ u = {'name' : 'anonymous user'}
+ print "%s, %s!" % (random.choice(greetings), u["name"],)
+ print ""
+ print "You are using the hub at %s" % (session.baseurl,)
+ if u.get("krb_principal", None) is not None:
+ print "Authenticated via Kerberos principal %s" % (u["krb_principal"])
def handle_help(options, session, args):
"List available commands"
--
1.7.1
9 years, 7 months