diff options
author | Matt Wilson <msw@redhat.com> | 1999-05-06 16:35:20 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-05-06 16:35:20 +0000 |
commit | caeaf73802fa48889653088f752219ed8963bce3 (patch) | |
tree | d0eb2d8530f31de0f2cc98e9acb898b4e392cadb /anaconda | |
parent | 539538715b1f196fbd6e82e20637f016608f7541 (diff) | |
download | anaconda-caeaf73802fa48889653088f752219ed8963bce3.tar.gz anaconda-caeaf73802fa48889653088f752219ed8963bce3.tar.xz anaconda-caeaf73802fa48889653088f752219ed8963bce3.zip |
changed the pid check from 10 to 50
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ if (debug): import pdb pdb.set_trace() -if (not test and not localInstall and os.getpid() > 10): +if (not test and not localInstall and os.getpid() > 50): print "you're running me on a live system! that's incredibly stupid." sys.exit(1) |