diff options
author | Mike Fulbright <msf@redhat.com> | 2001-08-13 19:15:03 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-08-13 19:15:03 +0000 |
commit | aeeea5c324fa6a401a58526976e3f28b2267ace7 (patch) | |
tree | ce47089e06faf9e6b0edfb2ce1dd5711f805d8be /packages.py | |
parent | c8da7f04ed3d029b0c760f996f7d9c6a211cd255 (diff) | |
download | anaconda-aeeea5c324fa6a401a58526976e3f28b2267ace7.tar.gz anaconda-aeeea5c324fa6a401a58526976e3f28b2267ace7.tar.xz anaconda-aeeea5c324fa6a401a58526976e3f28b2267ace7.zip |
get rid of these messages, they are not needed
Diffstat (limited to 'packages.py')
-rw-r--r-- | packages.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/packages.py b/packages.py index 6cb2e2228..6ed7875f4 100644 --- a/packages.py +++ b/packages.py @@ -780,17 +780,13 @@ def doPostInstall(method, id, intf, instPath): def migrateXinetd(instPath, instLog): if not os.access (instPath + "/usr/sbin/inetdconvert", os.X_OK): - log("did not find %s" % instPath + "/usr/sbin/inetdconvert") return if not os.access (instPath + "/etc/inetd.conf.rpmsave", os.R_OK): - log("did not run inetdconvert because no inetd.conf.rpmsave found") return argv = [ "/usr/sbin/inetdconvert", "--convertremaining", "--inetdfile", "/etc/inetd.conf.rpmsave" ] - - log("found inetdconvert, executing %s" % argv) logfile = os.open (instLog, os.O_APPEND) iutil.execWithRedirect(argv[0], argv, root = instPath, |