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

[PATCH] Don't start our audit daemon with the livecd installer



On the livecd install, the normal audit daemon is running, so we don't need to start our own.  This also
keeps us from leaving around a stray process on exit (#492513)
---
 anaconda |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/anaconda b/anaconda
index 4dcf113..ac9198a 100755
--- a/anaconda
+++ b/anaconda
@@ -674,7 +674,7 @@ if __name__ == "__main__":
     if iutil.isS390():
         opts.isHeadless = True
 
-    if not flags.test and not flags.rootpath:
+    if not flags.test and not flags.rootpath and not flags.livecdInstall:
     	isys.auditDaemon()
 
     users.createLuserConf(anaconda.rootPath)
-- 
1.6.1


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