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)
On 03/31/2009 08:23 PM, Jeremy Katz wrote:
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)
Looks good,
Regards,
Hans
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)
anaconda-devel@lists.stg.fedoraproject.org