summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-05-06 16:35:20 +0000
committerMatt Wilson <msw@redhat.com>1999-05-06 16:35:20 +0000
commitcaeaf73802fa48889653088f752219ed8963bce3 (patch)
treed0eb2d8530f31de0f2cc98e9acb898b4e392cadb /anaconda
parent539538715b1f196fbd6e82e20637f016608f7541 (diff)
downloadanaconda-caeaf73802fa48889653088f752219ed8963bce3.tar.gz
anaconda-caeaf73802fa48889653088f752219ed8963bce3.tar.xz
anaconda-caeaf73802fa48889653088f752219ed8963bce3.zip
changed the pid check from 10 to 50
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda2
1 files changed, 1 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index efd8bd5d1..c8e60854b 100755
--- a/anaconda
+++ b/anaconda
@@ -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)