summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-07-13 20:02:55 +0000
committerMatt Wilson <msw@redhat.com>2001-07-13 20:02:55 +0000
commit92ec772e57ec142d7a73d36f83611a1633167c9a (patch)
tree0a93ffb371767709c4c88be3e597324e6e81b86f /anaconda
parent08bdf5b8d78ee9d235b64179f79094a1c297c451 (diff)
downloadanaconda-92ec772e57ec142d7a73d36f83611a1633167c9a.tar.gz
anaconda-92ec772e57ec142d7a73d36f83611a1633167c9a.tar.xz
anaconda-92ec772e57ec142d7a73d36f83611a1633167c9a.zip
open syslog file in append mode only (#47748)
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda2
1 files changed, 1 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index 6ac463319..6a297666f 100755
--- a/anaconda
+++ b/anaconda
@@ -52,7 +52,7 @@ if len(sys.argv) > 1:
from syslogd import Syslogd
root = sys.argv[2]
output = sys.argv[3]
- syslog = Syslogd (root, open (output, "w+"))
+ syslog = Syslogd (root, open (output, "a"))
# this never returns
import signal, traceback, string, isys, iutil, time