summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarel Klic <kklic@redhat.com>2010-01-26 09:18:34 +0100
committerKarel Klic <kklic@redhat.com>2010-01-26 09:18:34 +0100
commit8271f36afcb46ae62d2163b9ee5ae5e116e86eb8 (patch)
treef7eb151b199d69a77f52912bec642cac8badd814 /src
parent6c189fb2d2e8dfcbd796529a23c99d30517255a6 (diff)
parent4a1f21fd22497065049f7b88269b103b54d29df4 (diff)
Merge branch 'master' of git://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src')
-rw-r--r--src/Daemon/MiddleWare.cpp11
-rw-r--r--src/Daemon/abrt.conf8
2 files changed, 10 insertions, 9 deletions
diff --git a/src/Daemon/MiddleWare.cpp b/src/Daemon/MiddleWare.cpp
index 40bee1a..a89070e 100644
--- a/src/Daemon/MiddleWare.cpp
+++ b/src/Daemon/MiddleWare.cpp
@@ -601,15 +601,16 @@ static mw_result_t SavePackageDescriptionToDebugDump(
const char *basename = strrchr(pExecutable, '/');
if (basename) basename++; else basename = pExecutable;
- /* Add "perl" and such as needed */
- if (strcmp(basename, "python") == 0)
- {
+ /* Add more interpreters as needed */
+ if (strcmp(basename, "python") == 0
+ || strcmp(basename, "perl") == 0
+ ) {
// TODO: we don't verify that python executable is not modified
// or that python package is properly signed
// (see CheckFingerprint/CheckHash below)
/* Try to find package for the script by looking at argv[1].
- * This will work only of the cmdline contains the whole path.
+ * This will work only if the cmdline contains the whole path.
* Example: python /usr/bin/system-control-network
*/
char *script_name = get_argv1_if_full_path(cmdline);
@@ -708,7 +709,7 @@ bool analyzer_has_AutoReportUIDs(const char *analyzer_name, const char *uid_str)
if (it == settings.end())
return false;
- if ((strcmp(analyzer_name, "Kerneloops") == 0) && (strcmp(uid, "-1") == 0))
+ if ((strcmp(analyzer_name, "Kerneloops") == 0) && (strcmp(uid_str, "-1") == 0))
return true;
/*
diff --git a/src/Daemon/abrt.conf b/src/Daemon/abrt.conf
index 406289f..bffc48d 100644
--- a/src/Daemon/abrt.conf
+++ b/src/Daemon/abrt.conf
@@ -13,8 +13,8 @@ BlackList = nspluginwrapper
Database = SQLite3
# Max size for crash storage [MiB]
MaxCrashReportsSize = 1000
-# Vector of actions and reporters which are activated immediately after a crash occurs,
-# comma separated.
+# Vector of actions and reporters which are activated immediately
+# after a crash occurs, comma separated.
#ActionsAndReporters = Mailx("[abrt] new crash was detected")
#ActionsAndReporters = FileTransfer("store")
ActionsAndReporters = RunApp("test x\"`cat component`\" = x\"xorg-x11-server-Xorg\" && cp /var/log/Xorg.0.log .")
@@ -28,7 +28,7 @@ Python = Bugzilla, Logger
# Which Action plugins to run repeatedly
[ Cron ]
-# h:m - at h:m an action plugin is activated
-# s - every s seconds is an action plugin activated
+# h:m - at h:m
+# s - every s seconds
120 = KerneloopsScanner
#02:00 = FileTransfer
f='#n194'>194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
/*
    SSSD

    Authors:
        Stephen Gallagher <sgallagh@redhat.com>

    Copyright (C) 2012 Red Hat

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License