PATCH: fix various packaging issues (#225246)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

There are various issues with the packaging of anaconda, see:
https://bugzilla.redhat.com/show_bug.cgi?id=225246

And the attached rpmlint.log

The attached patch fixes these.

Regards,

Hans
diff --git a/anaconda.spec b/anaconda.spec
index 5a66b49..1a38f5b 100644
--- a/anaconda.spec
+++ b/anaconda.spec
@@ -8,6 +8,20 @@ License: GPLv2+
 Group:   Applications/System
 URL:     http://fedoraproject.org/wiki/Anaconda
 
+# To generate Source0 do:
+# VERSION=%{version}
+# RELEASE=%{release}
+# git clone http://git.fedorahosted.org/git/anaconda.git
+# git checkout -b archive-branch anaconda-$VERSION-$RELEASE
+# git archive --format=tar --prefix=anaconda-$VERSION/ \
+#   anaconda-$VERSION-$RELEASE > anaconda-$VERSION.tar
+# make ChangeLog
+# make -C docs kickstart-docs.txt command-line.txt
+# mkdir -p anaconda-$VERSION/docs/
+# cp docs/kickstart-docs.txt docs/command-line.txt anaconda-$VERSION/docs/
+# cp ChangeLog anaconda-$VERSION/
+# tar --append -f anaconda-$VERSION.tar anaconda-$VERSION
+# bzip2 -f anaconda-$VERSION.tar
 Source0: %{name}-%{version}.tar.bz2
 
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -29,7 +43,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 %define syscfgdatever 1.9.0
 %define pythonpyblockver 0.24-1
 %define libbdevidver 5.1.2-1
-%define desktopfileutilsver 0.8
 %define e2fsver 1.41.0
 %define nmver 0.7.0
 %define dbusver 1.2.3
@@ -97,7 +110,6 @@ Requires: dmidecode
 Requires: python-pyblock >= %{pythonpyblockver}
 Requires: libbdevid >= %{libbdevidver}
 Requires: libbdevid-python
-Requires: audit-libs
 Requires: libuser-python
 Requires: newt-python
 Requires: authconfig
@@ -116,8 +128,6 @@ Requires: python-bugzilla
 %ifarch %livearches
 Requires: usermode
 Requires: zenity
-Requires(post): desktop-file-utils >= %{desktopfileutilsver}
-Requires(postun): desktop-file-utils >= %{desktopfileutilsver}
 %endif
 Requires: createrepo >= %{createrepover}
 Requires: squashfs-tools
@@ -138,6 +148,7 @@ Requires: dhclient
 Requires: dhcpv6-client
 Requires: anaconda-yum-plugins
 Obsoletes: anaconda-images <= 10
+Provides: anaconda-images = %{version}-%{release}
 Obsoletes: anaconda-runtime < %{version}-%{release}
 Provides: anaconda-runtime = %{version}-%{release}
 
@@ -167,12 +178,12 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 
 %ifarch %livearches
 %post
-/usr/bin/update-desktop-database %{_datadir}/applications
+update-desktop-database &> /dev/null || :
 %endif
 
 %ifarch %livearches
 %postun
-/usr/bin/update-desktop-database %{_datadir}/applications
+update-desktop-database &> /dev/null || :
 %endif
 
 %files -f %{name}.lang
@@ -196,15 +207,12 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 %ifarch %livearches
 %{_bindir}/liveinst
 %{_sbindir}/liveinst
-%{_sysconfdir}/pam.d/*
+%config(noreplace) %{_sysconfdir}/pam.d/*
+%config(noreplace) %{_sysconfdir}/security/console.apps/*
 %{_sysconfdir}/X11/xinit/xinitrc.d/*
-%{_sysconfdir}/security/console.apps/*
 %{_datadir}/applications/*.desktop
 %endif
 
-%triggerun -- anaconda < 8.0-1
-/sbin/chkconfig --del reconfig >/dev/null 2>&1 || :
-
 %changelog
 * Tue Dec 23 2008 David Cantrell <dcantrell@xxxxxxxxxx> - 11.5.0.3-1
 - Initialize domainname to None (#477831) (dcantrell)
@@ -903,7 +911,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 - Remove extra ')' in install-buildrequires (dcantrell)
 
 * Mon Aug 11 2008 Chris Lumens <clumens@xxxxxxxxxx> - 11.4.1.27-1
-- Handle 'rescue' and %post in rescue mode (atodorov)
+- Handle 'rescue' and %%post in rescue mode (atodorov)
 - Delay the duplicate label error until the label is actually used
   (#458505). (clumens)
 - Enable wireless modules again for now as a test (#443545). (clumens)
@@ -1073,7 +1081,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 - Don't strip too much off the NFS directory path. (clumens)
 - Log stage2 url better. (pjones)
 - Fix minor whitespace nits. (pjones)
-- Use %m rather than strerror() where appropriate. (pjones)
+- Use %%m rather than strerror() where appropriate. (pjones)
 - Make setupCdrom() actually return the path to the stage2 image it
   found. (pjones)
 - Don't unconditionally pass --lang for live installs (#454101) (katzj)
@@ -1427,7 +1435,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 * Wed Apr 02 2008 Chris Lumens <clumens@xxxxxxxxxx> - 11.4.0.65-1
 - Only do verbose hal logging if loglevel=debug (katzj)
 - Avoid AttributeError in HardDriveDict (#432362) (pjones)
-- Don't use %n with gettext to avoid segfaults (#439861) (katzj)
+- Don't use %%n with gettext to avoid segfaults (#439861) (katzj)
 - Require live installs to be to an ext2 or ext3 filesystem (#397871) (katzj)
 - Don't allow migrations to ext4 for now (katzj)
 - Change ext4 parameter to ext4, not iamanext4developer (katzj)
@@ -1809,7 +1817,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 - remove yumcache (katzj)
 - Don't do fixmtimes anymore (katzj)
 - Don't compress translations (katzj)
-- Don't manually duplicate things from package %post scripts (katzj)
+- Don't manually duplicate things from package %%post scripts (katzj)
 - Remove some unused options (--discs and --buildinstdir) (katzj)
 - Keep /etc/nsswitch.conf and /etc/shells (katzj)
 - Stop forcing passive mode for FTP by patching urllib (katzj)
@@ -2140,7 +2148,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 - Add linear.ko to the modules available for rescue mode (#151742).
 - Update implantisomd5 usage to give correct option name (#364611).
 - Start removing unneeded install method code.
-- Run %post scripts on upgrade (#392201).
+- Run %%post scripts on upgrade (#392201).
 - Correct nicdelay patch (msivak, #349521).
 - Only run media check if we're installing off the CD (#362561).
 - Fix display of package names in non-English text installs (#376231).
@@ -2620,7 +2628,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 - Fix for mirror errors (dlehman)
 - Fix splittree (Joel Andres Granados, #233384)
 - Fix ppc32 netboot (pnasrat, #237988)
-- Fix %packages for media installs (clumens, #231121, #235881)
+- Fix %%packages for media installs (clumens, #231121, #235881)
 - Fix rescue mode networking (dcantrell, #238080)
 - Adjust for unbreaking the yum API
 - Fix rescue mode traceback (#238261)
@@ -2832,7 +2840,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 - BR newt-static
 
 * Thu Mar 01 2007 Chris Lumens <clumens@xxxxxxxxxx> - 11.2.0.28-1
-- Support multiple %ksappend lines (#222201).
+- Support multiple %%ksappend lines (#222201).
 - Set the ksdata after setting the initial timezone values (#230472).
 - New progress screen interface that's easier on backends (katzj).
 - Handle KickstartError exns better than just dumping a backtrace.
@@ -2956,7 +2964,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 * Fri Jan 19 2007 Chris Lumens <clumens@xxxxxxxxxx> - 11.2.0.13-1
 - Kickstart and upgrade are no longer installclasses.
 - Update x86_64 syslinux config (katzj).
-- Support %packages --default (#221305).
+- Support %%packages --default (#221305).
 - Fix early kickstart UI traceback.
 - Remove cruft in x86 images (katzj).
 - Fix error handling in loader netconfig screen (dcantrell).
@@ -3066,7 +3074,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 - Update kickstart documentation.
 - Don't always write out xconfig and monitor in anaconda-ks.cfg (#211977).
 - Follow drive order specified in kickstart file (#214881).
-- Unmount source on image installs before %post is run (#214677).
+- Unmount source on image installs before %%post is run (#214677).
 - Check return value of getBiosDisk (pjones, #214653).
 - splittree shouldn't fail with non-rpms in the directory (jkeating).
 - Order bind mounts correctly on upgrades (#212270).
@@ -4540,7 +4548,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 - Move repo setup and group selection earlier (pnasrat)
 
 * Tue Sep 20 2005 Jeremy Katz <katzj@xxxxxxxxxx> - 10.3.0.24-1
-- Some kickstart %packages fixes (clumens)
+- Some kickstart %%packages fixes (clumens)
 - Don't copy null bytes into syslog (clumens)
 - New exception dialog (clumens)
 - Fix a traceback (pnasrat)
@@ -4994,7 +5002,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 
 * Sat Feb 12 2005 Jeremy Katz <katzj@xxxxxxxxxx> - 10.2.0.19-1
 - fix x86_64 installs for bad urlgrabber import
-- Fix traceback with no %post (clumens)
+- Fix traceback with no %%post (clumens)
 - Put hostname in the text entry (clumens, #132826)
 
 * Tue Feb  8 2005 Jeremy Katz <katzj@xxxxxxxxxx> - 10.2.0.18-1
@@ -5003,7 +5011,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 - Add needed requirements for rpm 4.4
 - Fix segfault when rpm tries to write to non-existent fd during 
   transaction ordering
-- Support --erroronfail as an option for %pre/%post (clumens, #124386)
+- Support --erroronfail as an option for %%pre/%%post (clumens, #124386)
 
 * Tue Feb  8 2005 Jeremy Katz <katzj@xxxxxxxxxx> - 10.2.0.17-1
 - Use rhpl.archscore to fix iseries upgrades (pnasrat, #146915)
@@ -5190,7 +5198,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 - Update for new Indic font filenames
 
 * Mon Oct 18 2004 Jeremy Katz <katzj@xxxxxxxxxx> - 10.0.3.20-1
-- Fix traceback with %post logging (Gijs Hollestelle, #136154)
+- Fix traceback with %%post logging (Gijs Hollestelle, #136154)
 - When using a local stage2.img for FTP/HTTP install, give an error earlier 
   if you point at an invalid tree (#135603, #117155, #120101)
 - Add a trailing newline to /etc/sysconfig/kernel
@@ -5201,7 +5209,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 - Fix font size to fit on disk display better (#135731)
 - Write out part lines for autopart lvm correctly (#135714)
 - Remove empty row in drive order for boot loader (#135944)
-- Replace % in URLs to avoid format string weirdness (#135929)
+- Replace %% in URLs to avoid format string weirdness (#135929)
 - Bind mount /dev for rescue mode (#135860)
 - Fix Dutch and Danish keyboard defaults (#135839)
 - add s2io 10GbE driver
@@ -5249,7 +5257,7 @@ desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{bu
 * Mon Oct  4 2004 Jeremy Katz <katzj@xxxxxxxxxx> - 10.0.3.11-1
 - Handle 32 raid devs (#134438)
 - Fix LCS PORTNAME (#134487)
-- Add logging of kickstart scripts with --log to %post/%pre
+- Add logging of kickstart scripts with --log to %%post/%%pre
 - Copy /tmp/anaconda.log and /tmp/syslog to /var/log/anaconda.log 
   and /var/log/anaconda.syslog respectively (#124370)
 - Fix Polish (#134554)
diff --git a/bootdisk/i386/syslinux.cfg b/bootdisk/i386/syslinux.cfg
old mode 100755
new mode 100644
diff --git a/bootdisk/x86_64/syslinux.cfg b/bootdisk/x86_64/syslinux.cfg
old mode 100755
new mode 100644
diff --git a/filer.py b/filer.py
index 2c3375b..55cf95b 100644
--- a/filer.py
+++ b/filer.py
@@ -1,5 +1,3 @@
-#!/usr/bin/python
-#
 # Copyright (C) 2008  Red Hat, Inc.
 # All rights reserved.
 #
diff --git a/gui.py b/gui.py
old mode 100755
new mode 100644
diff --git a/installclasses/Makefile b/installclasses/Makefile
index 3b1c168..2925eec 100644
--- a/installclasses/Makefile
+++ b/installclasses/Makefile
@@ -30,7 +30,7 @@ all:
 
 install: 
 	mkdir -p $(DESTDIR)/$(PYTHONLIBDIR)/installclasses
-	install $(CLASSES) $(DESTDIR)/$(PYTHONLIBDIR)/installclasses
+	install -p -m 644 $(CLASSES) $(DESTDIR)/$(PYTHONLIBDIR)/installclasses
 	../py-compile --basedir $(DESTDIR)/$(PYTHONLIBDIR)/installclasses $(DESTDIR)/$(PYTHONLIBDIR)/installclasses/*.py
 
 clean:
diff --git a/isys/Makefile b/isys/Makefile
index 14c7505..57d9df5 100644
--- a/isys/Makefile
+++ b/isys/Makefile
@@ -77,7 +77,7 @@ clean:
 
 install: all
 	install -s $(PYMODULES) $(DESTDIR)/$(PYTHONLIBDIR)
-	install isys.py $(DESTDIR)/$(PYTHONLIBDIR)
+	install -p -m 644 isys.py $(DESTDIR)/$(PYTHONLIBDIR)
 
 subdirs:
 	for d in $(SUBDIRS); do make -C $$d; done
diff --git a/iw/Makefile b/iw/Makefile
index 742b969..728af7c 100644
--- a/iw/Makefile
+++ b/iw/Makefile
@@ -24,7 +24,7 @@ all:
 
 install: 
 	mkdir -p $(DESTDIR)/$(PYTHONLIBDIR)/iw
-	install *.py $(DESTDIR)/$(PYTHONLIBDIR)/iw
+	install -p -m 644 *.py $(DESTDIR)/$(PYTHONLIBDIR)/iw
 	../py-compile --basedir $(DESTDIR)/$(PYTHONLIBDIR)/iw $(DESTDIR)/$(PYTHONLIBDIR)/iw/*.py
 
 clean:
diff --git a/scripts/Makefile b/scripts/Makefile
index 59a51c2..6e0e23b 100644
--- a/scripts/Makefile
+++ b/scripts/Makefile
@@ -22,15 +22,16 @@ include ../Makefile.inc
 all:
 
 install:
-	install -m 755 upd-instroot $(DESTDIR)/$(RUNTIMEDIR)
-	install -m 755 mk-images* $(DESTDIR)/$(RUNTIMEDIR)
-	install -m 755 buildinstall $(DESTDIR)/$(RUNTIMEDIR)
-	install -m 755 buildinstall.functions $(DESTDIR)/$(RUNTIMEDIR)
-	install -m 755 scrubtree $(DESTDIR)/$(RUNTIMEDIR)
-	install -m 755 getkeymaps $(DESTDIR)/$(RUNTIMEDIR)
-	install -m 755 makestamp.py $(DESTDIR)/$(RUNTIMEDIR)
-	install -m 755 maketreeinfo.py $(DESTDIR)/$(RUNTIMEDIR)
-	install -m 755 pyrc.py $(DESTDIR)/$(RUNTIMEDIR)
-	install -m 755 upd-updates $(DESTDIR)/$(RUNTIMEDIR)
+	install -p -m 755 upd-instroot $(DESTDIR)/$(RUNTIMEDIR)
+	install -p -m 755 mk-images $(DESTDIR)/$(RUNTIMEDIR)
+	install -p -m 644 mk-images.* $(DESTDIR)/$(RUNTIMEDIR)
+	install -p -m 755 buildinstall $(DESTDIR)/$(RUNTIMEDIR)
+	install -p -m 755 buildinstall.functions $(DESTDIR)/$(RUNTIMEDIR)
+	install -p -m 755 scrubtree $(DESTDIR)/$(RUNTIMEDIR)
+	install -p -m 755 getkeymaps $(DESTDIR)/$(RUNTIMEDIR)
+	install -p -m 755 makestamp.py $(DESTDIR)/$(RUNTIMEDIR)
+	install -p -m 755 maketreeinfo.py $(DESTDIR)/$(RUNTIMEDIR)
+	install -p -m 644 pyrc.py $(DESTDIR)/$(RUNTIMEDIR)
+	install -p -m 755 upd-updates $(DESTDIR)/$(RUNTIMEDIR)
 
 depend:
diff --git a/scripts/mk-images.efi b/scripts/mk-images.efi
old mode 100755
new mode 100644
index f39a051..e669876
--- a/scripts/mk-images.efi
+++ b/scripts/mk-images.efi
@@ -1,4 +1,3 @@
-#!/bin/bash
 #
 # mk-images.efi
 #
diff --git a/scripts/mk-images.ia64 b/scripts/mk-images.ia64
index 871ce6a..d4dae35 100644
--- a/scripts/mk-images.ia64
+++ b/scripts/mk-images.ia64
@@ -1,4 +1,3 @@
-#!/bin/bash
 #
 # mk-images.ia64
 #
diff --git a/scripts/pyrc.py b/scripts/pyrc.py
old mode 100755
new mode 100644
diff --git a/sortedtransaction.py b/sortedtransaction.py
index 986ecd8..e5b2f02 100644
--- a/sortedtransaction.py
+++ b/sortedtransaction.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python
 #
 # sortedtransaction.py
 #
diff --git a/textw/Makefile b/textw/Makefile
index 2590f64..958bb14 100644
--- a/textw/Makefile
+++ b/textw/Makefile
@@ -24,7 +24,7 @@ all:
 
 install: 
 	mkdir -p $(DESTDIR)/$(PYTHONLIBDIR)/textw
-	install *.py $(DESTDIR)/$(PYTHONLIBDIR)/textw
+	install -p -m 644 *.py $(DESTDIR)/$(PYTHONLIBDIR)/textw
 	../py-compile --basedir $(DESTDIR)/$(PYTHONLIBDIR)/textw $(DESTDIR)/$(PYTHONLIBDIR)/textw/*.py
 
 clean:
diff --git a/ui/Makefile b/ui/Makefile
index 021a12c..e01e990 100644
--- a/ui/Makefile
+++ b/ui/Makefile
@@ -24,7 +24,7 @@ all:
 
 install: 
 	mkdir -p $(DESTDIR)/$(ANACONDADATADIR)/ui
-	install *.glade $(DESTDIR)/$(ANACONDADATADIR)/ui
+	install -p -m 644 *.glade $(DESTDIR)/$(ANACONDADATADIR)/ui
 
 depend:
 
anaconda.src:194: E: hardcoded-library-path in %{_prefix}/lib/anaconda
anaconda.src:195: E: hardcoded-library-path in %{_prefix}/lib/anaconda-runtime
anaconda.src:906: W: macro-in-%changelog post
anaconda.src:1076: W: macro-in-%changelog m
anaconda.src:1430: W: macro-in-%changelog n
anaconda.src:1812: W: macro-in-%changelog post
anaconda.src:2143: W: macro-in-%changelog post
anaconda.src:2623: W: macro-in-%changelog packages
anaconda.src:2835: W: macro-in-%changelog ksappend
anaconda.src:2959: W: macro-in-%changelog packages
anaconda.src:3069: W: macro-in-%changelog post
anaconda.src:4543: W: macro-in-%changelog packages
anaconda.src:4997: W: macro-in-%changelog post
anaconda.src:5006: W: macro-in-%changelog pre
anaconda.src:5193: W: macro-in-%changelog post
anaconda.src:5252: W: macro-in-%changelog post
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/blwhere.glade
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/netconfig_text.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda-runtime/boot/syslinux.cfg
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/network_text.py
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/account.glade
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/constants_text.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/bootloader_main_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/zipl_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda-runtime/mk-images.s390
anaconda.x86_64: E: non-executable-script /usr/lib/anaconda/filer.py 0644
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/netconfig_dialog.py
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/instkey.glade
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/iscsi-config.glade
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/complete_text.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/osbootwidget.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda-runtime/mk-images.alpha
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/gui.py
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/tasksel.glade
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/grpselect_text.py
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/network.glade
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/autopart.glade
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/congrats_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/lvm_dialog_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/network_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda-runtime/mk-images.x86
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda-runtime/pyrc.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/upgrade_migratefs_gui.py
anaconda.x86_64: W: file-not-utf8 /usr/share/doc/anaconda-11.5.0.3/ChangeLog
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/timezone_text.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/userauth_text.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/language_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/partmethod_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/bootloader_text.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/welcome_gui.py
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/lukspassphrase.glade
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/kbd_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/progress_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/welcome_text.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/blpasswidget.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/partition_text.py
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/GroupSelector.glade
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/netconfig.glade
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/task_text.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/installclasses/rhel.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/progress_text.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/datacombo.py
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/anaconda.glade
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/installclasses/fedora.py
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/detailed-dialog.glade
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/exnSave.glade
anaconda.x86_64: W: non-conffile-in-etc /etc/security/console.apps/liveinst
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/pixmapRadioButtonGroup_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/language_text.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/upgrade_text.py
anaconda.x86_64: E: non-executable-script /usr/lib/anaconda/sortedtransaction.py 0644
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/iw_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/zipl_text.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/isys.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/package_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/timezone_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/partmethod_text.py
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/adddrive.glade
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/partition_ui_helpers_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/upgrade_bootloader_text.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/GroupSelector.py
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/addrepo.glade
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/upgrade_swap_gui.py
anaconda.x86_64: E: script-without-shebang /usr/share/anaconda/ui/zfcp-config.glade
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/examine_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/upgrade_bootloader_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/autopart_type.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/task_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/checklist.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda-runtime/mk-images.ppc
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/partition_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/raid_dialog_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/account_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/iw/partition_dialog_gui.py
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/statusline_text.py
anaconda.x86_64: W: non-conffile-in-etc /etc/pam.d/liveinst
anaconda.x86_64: E: script-without-shebang /usr/lib/anaconda/textw/keyboard_text.py
anaconda.x86_64: E: explicit-lib-dependency audit-libs
anaconda.x86_64: E: explicit-lib-dependency libbdevid-python
anaconda.x86_64: E: explicit-lib-dependency libuser-python
anaconda.x86_64: E: explicit-lib-dependency libxml2-python
anaconda.x86_64: W: obsolete-not-provided anaconda-images
2 packages and 0 specfiles checked; 84 errors, 18 warnings.
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list

[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux