[PATCH] Don't error out if a ks %include is missing when looking for sshpw (#923627).

Chris Lumens clumens at redhat.com
Wed Mar 20 13:48:44 UTC 2013


---
 utils/handle-sshpw | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/handle-sshpw b/utils/handle-sshpw
index f320153..f4fbfc7 100755
--- a/utils/handle-sshpw
+++ b/utils/handle-sshpw
@@ -34,7 +34,7 @@ ksfile = '/run/install/ks.cfg'
 if not os.path.exists(ksfile):
     sys.exit()
 
-ksparser = KickstartParser(makeVersion())
+ksparser = KickstartParser(makeVersion(), missingIncludeIsFatal=False)
 ksparser.readKickstart(ksfile)
 
 # we need to have a libuser.conf that points to the installer root for
-- 
1.8.1.2



More information about the anaconda-patches mailing list