diff options
author | Matt Wilson <msw@redhat.com> | 1999-12-16 20:52:51 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-12-16 20:52:51 +0000 |
commit | 372a0868a0abc739ff162a53060400e4a3032de2 (patch) | |
tree | 8a7ba1d4cff3b42054ef629e23e57c8a94e1a521 | |
parent | ceae8d6f0788e37a392d1c595259c5289b7202c5 (diff) | |
download | anaconda-372a0868a0abc739ff162a53060400e4a3032de2.tar.gz anaconda-372a0868a0abc739ff162a53060400e4a3032de2.tar.xz anaconda-372a0868a0abc739ff162a53060400e4a3032de2.zip |
override signal handler
-rwxr-xr-x | anaconda | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ #!/usr/bin/python -import sys, os +import sys, os, signal +signal.signal(signal.SIGINT, signal.SIG_DFL) # # For anaconda in reconfig mode |