summaryrefslogtreecommitdiffstats
path: root/src/Hooks/sitecustomize.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/Hooks/sitecustomize.py')
-rw-r--r--src/Hooks/sitecustomize.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/Hooks/sitecustomize.py b/src/Hooks/sitecustomize.py
index 56c6669b..32a3747b 100644
--- a/src/Hooks/sitecustomize.py
+++ b/src/Hooks/sitecustomize.py
@@ -1,14 +1,16 @@
+# ABRT crash hook
+#
# This special script is placed in
# /usr/local/lib/pythonNNN/site-packages/sitecustomize.py
# and python interpreter runs it automatically everytime
-# some python script is executed
+# some python script is executed.
config = None
conf = {}
try:
config = open("/etc/abrt/pyhook.conf","r")
except:
- #silently ignore if file doesn't exist
+ # Silently ignore if file doesn't exist.
pass
try:
@@ -20,10 +22,14 @@ try:
line = config.readline().lower().replace(' ','').strip('\n').split('=')
conf[line[0]] = line[1]
except:
- # ignore silently everything, because we don't want to bother user if this hook doesn't work
+ # Ignore silently everything, because we don't want to bother user
+ # if this hook doesn't work.
pass
if conf.has_key("enabled"):
+ # Prevent abrt exception handler from running when the abrtd daemon is
+ # not active.
+ # abrtd sets the value to "no" when deactivated and vice versa.
if conf["enabled"] == "yes":
try:
from abrt_exception_handler import *