Adding upstream version 1.236.2.
[live-boot-grml.git] / scripts / live-bottom / 33enable_apport_crashes
index 0f177ab..47e650d 100755 (executable)
@@ -20,15 +20,20 @@ esac
 
 # live-initramfs header
 
+if [ -n "${NOPROGRAMCRASHES}" ]
+then
+       exit 0
+fi
+
 . /scripts/live-functions
 
-log_begin_msg "Enabling notifications about program crashes..."
+log_begin_msg "Enabling detection of crashes"
 
 # live-initramfs script
 
-update_notifier_version=$(chroot /root dpkg-query -W --showformat='${Version}' update-notifier 2>/dev/null) || update_notifier_version=""
-if [ -n "$update_notifier_version" ]; then
-    chroot /root sudo -u "$USERNAME" gconftool-2 -t bool -s /apps/update-notifier/show_apport_crashes true
+if [ -e /root/etc/default/apport ]
+then
+       sed -i 's/enabled=0/enabled=1/' /root/etc/default/apport
 fi
 
 log_end_msg