~ahasenack/apport/samba-security-share-bugpattern

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
<?xml version="1.0"?>

<patterns>

<!-- General apport package patterns that apply to any package -->

    <pattern url="https://launchpad.net/bugs/349469">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/349469">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeApttermlog">debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process</re>
    </pattern>
    <pattern url="https://wiki.ubuntu.com/Bugs/InitramfsLiveMedia">
        <re key="ProblemType">^Package</re>
        <re key="Title">exit status 1</re>
        <re key="DpkgTerminalLog">cp:.*`/vmlinuz'</re>
        <re key="LiveMediaBuild">Ubuntu</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/882147">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">start: Unknown job:</re>
        <re key="LiveMediaBuild">11.(10|04)</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/545790">
        <re key="ProblemType">^Package</re>
        <re key="ErrorMessage">error writing to ..standard output..: Success</re>
        <re key="Title">package .* failed to install\/upgrade: error writing to ..standard output..: Success</re>
    </pattern>
    <!-- fr.po -->
    <pattern url="https://launchpad.net/bugs/545790">
        <re key="ProblemType">^Package</re>
        <re key="ErrorMessage">erreur lors de l'écriture de .*sortie standard.*: Succès</re>
        <re key="Title">package .* failed to install\/upgrade</re>
    </pattern>
    <!-- es.po -->
    <pattern url="https://launchpad.net/bugs/545790">
        <re key="ProblemType">^Package</re>
        <re key="ErrorMessage">error al escribir en .*salida estándar.*</re>
        <re key="Title">package .* failed to install\/upgrade</re>
    </pattern>
    <!-- pt.po -->
    <pattern url="https://launchpad.net/bugs/545790">
        <re key="ProblemType">^Package</re>
        <re key="ErrorMessage">erro ao escrever .*saída standard.*</re>
        <re key="Title">package .* failed to install\/upgrade</re>
    </pattern>
    <!-- de.po -->
    <pattern url="https://launchpad.net/bugs/545790">
        <re key="ProblemType">^Package</re>
        <re key="ErrorMessage">Fehler beim Schreiben von .*Standardausgabe.*</re>
        <re key="Title">package .* failed to install\/upgrade</re>
    </pattern>
    <!-- it.po -->
    <pattern url="https://launchpad.net/bugs/545790">
        <re key="ProblemType">^Package</re>
        <re key="ErrorMessage">errore nello scrivere .*standard output.*</re>
        <re key="Title">package .* failed to install\/upgrade</re>
    </pattern>
    <!-- sv.po -->
    <pattern url="https://launchpad.net/bugs/545790">
        <re key="ProblemType">^Package</re>
        <re key="ErrorMessage">fel vid skrivning till .*standard ut.*</re>
        <re key="Title">package .* failed to install\/upgrade</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="DpkgTerminalLog">package.*is already installed and configured</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">Paket.*ist schon installiert und konfiguriert</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">el paquet.*ja està instaŀlat i configurat</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">pakken.*er allerede installeret og konfigureret</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">la pako.*jam estas instalita kaj akomodita</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">el paquete.*ya está instalado y configurado</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">le paquet.*est déjà installé et configuré</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">il pacchetto.*è già installato e configurato</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">pacote.*já está instalado e configurado</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">pakiet.*jest już zainstalowany i skonfigurowany</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeApttermlog">package.*is already installed and configured</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeApttermlog">Paket.*ist schon installiert und konfiguriert</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeApttermlog">el paquet.*ja està instaŀlat i configurat</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeApttermlog">pakken.*er allerede installeret og konfigureret</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeApttermlog">la pako.*jam estas instalita kaj akomodita</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeApttermlog">el paquete.*ya está instalado y configurado</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeApttermlog">le paquet.*est déjà installé et configuré</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeApttermlog">il pacchetto.*è già installato e configurato</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeApttermlog">pacote.*já está instalado e configurado</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeApttermlog">pakiet.*jest już zainstalowany i skonfigurowany</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeTermlog">package.*is already installed and configured</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeTermlog">Paket.*ist schon installiert und konfiguriert</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeTermlog">el paquet.*ja està instaŀlat i configurat</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeTermlog">pakken.*er allerede installeret og konfigureret</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeTermlog">la pako.*jam estas instalita kaj akomodita</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeTermlog">el paquete.*ya está instalado y configurado</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeTermlog">le paquet.*est déjà installé et configuré</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeTermlog">il pacchetto.*è già installato e configurato</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeTermlog">pacote.*já está instalado e configurado</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeMainlog">apt version: '0.8.16~exp5ubuntu</re>
        <re key="VarLogDistupgradeTermlog">pakiet.*jest już zainstalowany i skonfigurowany</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/386763">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">E: \/var\/lib\/defoma\/locked exists</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/386763">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeApttermlog">E: \/var\/lib\/defoma\/locked exists</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/984276">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeTermlog">E: /usr/share/initramfs-tools/hooks/casper failed with return 1.</re>
        <re key="VarLogDistupgradeTermlog">dpkg: error processing initramfs-tools \(--configure\):</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/989585">
        <re key="ProblemType">^Package</re>
        <re key="Package">resolvconf 1.63ubuntu11</re>
        <re key="DpkgTerminalLog">resolvconf.postinst: Error: Cannot replace the current /etc/resolv.conf with a symbolic link because it is immutable.</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/989585">
        <re key="ProblemType">^Package</re>
        <re key="SourcePackage">(ubuntu-meta|resolvconf)</re>
        <re key="VarLogDistupgradeApttermlog">resolvconf.postinst: Error: Cannot replace the current /etc/resolv.conf with a symbolic link because it is immutable.</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/993407">
        <re key="ProblemType">^Package</re>
        <re key="Package">install-info</re>
        <re key="SourcePackage">texinfo</re>
        <re key="VarLogDistupgradeApttermlog">(/etc/environment|default/locale)</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/993407">
        <re key="ProblemType">^Package</re>
        <re key="Package">install-info</re>
        <re key="SourcePackage">texinfo</re>
        <re key="DpkgTerminalLog">/etc/(environment|default/locale)</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/929219">
        <re key="ProblemType">^Crash</re>
        <re key="Stacktrace">gethostbyname2_r ?()</re>
        <re key="Dependencies">libc6 2.15(~pre|-0ubuntu[1-6])</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/805717">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">Unhandled Exception: System.TypeLoadException: Could not load type</re>
        <re key="Dependencies">modified: usr/lib/mono/2.0/mscorlib.dll</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/902603">
        <re key="ProblemType">^Package</re>
        <re key="Architecture">^amd64</re>
        <re key="VarLogDistupgradeApttermlog">Noting disappearance of (libjpeg8|libtag1c2a|odbcinst|libccid|libao-common)</re>
        <re key="VarLogDistupgradeApttermlog">Unpacking (libjpeg8|libtag1c2a|odbcinst|libccid|libao-common):i386</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/523896">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeApttermlog">(user|group)add: cannot lock</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/523896">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">(user|group)add: cannot lock</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/523896">
        <re key="Package">^whoopsie </re>
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">(user|group)add.*\/etc\/(passwd|gshadow|group).*</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/523896">
        <re key="Package">^whoopsie </re>
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeApttermlog">(user|group)add.*\/etc\/(passwd|gshadow|group).*</re>
    </pattern>

<!-- acpid -->

    <pattern url ="http://launchpad.net/bugs/368857">
        <re key="Package">^acpid </re>
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">initscript hal, action .*start" failed</re>
    </pattern>
    <pattern url ="http://launchpad.net/bugs/368857">
        <re key="Package">^acpid </re>
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeApttermlog">initscript hal, action .*start" failed</re>
    </pattern>

<!-- Converted from alacarte.xml -->

    <pattern url="http://launchpad.net/bugs/205463">
        <re key="Package">^alacarte </re>
        <re key="Traceback">in copyItem</re>
        <re key="Traceback">IOError: \[Errno 2\] No such file or directory</re>
    </pattern>
    
    <pattern url="http://launchpad.net/bugs/349350">
	<re key="Package">^alacarte </re>
	<re key="Traceback">in __addUndo</re>
    </pattern>
    
    <pattern url="http://launchpad.net/bugs/187919">
	<re key="Package">^alacarte </re>
	<re key="Title">alacarte crashed with AttributeError in split()</re>
	<re key="Traceback">AttributeError: 'NoneType' object has no attribute 'rfind'</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/826049">
	<re key="Package">^alacarte </re>
	<re key="Title">alacarte crashed with OSError in _execute_child()</re>
	<re key="Traceback">in _execute_child</re>
	<re key="Traceback">OSError: \[Errno 2\] No such file or directory</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/355829">
	<re key="Package">^alacarte </re>
	<re key="Traceback">in on_edit_properties_activate</re>
	<re key="Traceback">IOError: \[Errno 2\] No such file or directory</re>
    </pattern>

<!-- Converted from amavisd-new.xml -->

    <pattern url="http://launchpad.net/bugs/801338">
        <re key="Package">^amavisd-new-postfix </re>
        <re key="SourcePackage">^amavisd-new</re>
        <re key="DpkgTerminalLog">Starting amavisd: .*/etc/mailname.*</re>
    </pattern>

<!-- Patterns regarding apport -->

    <pattern url="http://launchpad.net/bugs/849880">
	<re key="Package">^apport</re>
	<re key="Title">apport-gtk crashed with TypeError in ui_present_crash</re>
	<re key="Traceback">TypeError\: glib.markup_escape_text\(\) takes at most 1 argument \(2 given\)</re> 
    </pattern>

    <pattern url="http://launchpad.net/bugs/1024202">
	<re key="Package">^apport</re>
	<re key="Signal">6</re> 
	<re key="Title">!xcb_xlib_threads_sequence_lost</re>
    </pattern>

<!-- Patterns regarding apt-clone -->

    <pattern url="http://launchpad.net/bugs/758013">
        <re key="Package">^apt-clone </re>
        <re key="Traceback">SystemError: E:Unable to correct problems, you have held broken packages.</re>
        <re key="Traceback">in _restore_package_selection_in_cache</re>
    </pattern>

<!-- Converted from apt-xapian-index.xml -->

    <pattern url="http://launchpad.net/bugs/424857">
        <re key="Package">^apt-xapian-index </re>
        <re key="Traceback">E:The package lists or status file could not be parsed or opened.</re>
        <re key="Traceback">SystemError: E:read.*but none left</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/819907">
        <re key="Package">^apt-xapian-index 0.44ubuntu[1|2|3|4]</re>
	<re key="Title">update-apt-xapian-index crashed with StopIteration in uri()</re>
 	<re key="Traceback">in uri</re>
	<re key="Traceback">StopIteration</re>
    </pattern>
    <pattern url="http://bit.ly/LeqiWq">
        <re key="Package">^apt-xapian-index</re>
        <re key="Traceback">indexer.py", line .*, in buildIndex</re>
        <re key="Traceback">DatabaseError</re>
    </pattern>
    <pattern url="http://bit.ly/Lihela">
        <re key="Package">^apt-xapian-index</re>
        <re key="Traceback">__init__.py", line .*, in __init__</re>
        <re key="Traceback">DatabaseLockError\: Unable to get write lock</re>
    </pattern>

<!-- Converted from aptdaemon.xml -->

<!-- The different keys TraceBack and Traceback are not typos but deliberate.  aptdaemon used to call the attachment TraceBack.txt -->

    <pattern url="https://launchpad.net/bugs/450662">
        <re key="Package">^aptdaemon </re>
        <re key="Traceback">call_blocking</re>
        <re key="Traceback">DBusException: org.freedesktop.DBus.Error.AccessDenied: Connection &quot;:....&quot; is not allowed to own the service &quot;org.debian.apt&quot; due to security policies in the configuration file</re>
    </pattern>

<!-- Converted from at-spi.xml -->

    <pattern url="http://launchpad.net/bugs/418743">
        <re key="Package">^at-spi </re>
        <re key="Stacktrace">#1  0x.*in _SmcProcessMessage</re>
        <re key="Stacktrace">#2  0x.*in IceProcessMessages</re>
        <re key="Stacktrace">#3  0x.*in process_ice_messages</re>
        <re key="Stacktrace">#8  0x.*in main</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/420053">
        <re key="Package">^at-spi </re>
        <re key="Stacktrace">#1  0x........ in IceProcessMessages</re>
        <re key="Stacktrace">#2  0x........ in process_ice_messages</re>
        <re key="Stacktrace">#8  0x........ in main.*at registry-main\.c</re>
    </pattern>

<!-- blueman -->
    <pattern url="https://launchpad.net/bugs/437883">
        <re key="Package">^blueman </re>
        <re key="Traceback">connection.py", line .*, in call_blocking</re>
        <re key="Traceback">DBusException: org.freedesktop.DBus.Error.ServiceUnknown</re>
    </pattern>

<!-- Converted from b43-fwcutter.xml -->

    <pattern url="https://wiki.ubuntu.com/Bugs/InitramfsLiveMedia">
        <re key="SourcePackage">^b43-fwcutter</re>
        <re key="DpkgTerminalLog">cp: cannot stat `/vmlinuz': No such file or directory</re>
        <re key="LiveMediaBuild">Ubuntu</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/711397">
        <re key="SourcePackage">^b43-fwcutter</re>
        <re key="VarLogDistupgradeApttermlog">Not supported (card here|low-power chip)</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/711397">
        <re key="SourcePackage">^b43-fwcutter</re>
        <re key="DpkgTerminalLog">Not supported (card here|low-power chip)</re>
    </pattern>

<!-- Converted from bcmwl.xml -->

    <pattern url="https://wiki.ubuntu.com/Bugs/InitramfsLiveMedia">
        <re key="SourcePackage">^bcmwl</re>
        <re key="DpkgTerminalLog">cp: cannot stat `/vmlinuz': No such file or directory</re>
        <re key="LiveMediaBuild">Ubuntu</re>
    </pattern>

<!-- Converted from blcr.xml -->

    <pattern url="https://launchpad.net/bugs/555729">
        <re key="Package">^blcr-dkms</re>
        <re key="DKMSBuildLog">DKMS make.log for.* kernel 2.6.3[345]</re>
        <re key="DKMSBuildLog">configure: error: Could not find a directory containing a Linux kernel 2.6.3[345][^ ]* build</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/700036">
        <re key="Package">^blcr-dkms</re>
        <re key="DKMSBuildLog">vmadump_common.c:1092:38: error: .*struct signal_struct.* has no member named .*count.*</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/762996">
        <re key="Package">^blcr-dkms</re>
        <re key="DKMSBuildLog">configure: error: Failed to locate kernel symbol table.</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/804943">
        <re key="Package">^blcr-dkms</re>
        <re key="DKMSBuildLog">is neither a kernel version string nor a full path</re>
    </pattern>

<!-- Converted from brother-cups-wrapper-common.xml -->

    <pattern url="http://launchpad.net/bugs/423817">
        <re key="Package">^brother-cups-wrapper-common </re>
        <re key="Stacktrace">0x.* in \*__GI_abort</re>
        <re key="Stacktrace">0x.* in \*__GI___fortify_fail</re>
        <re key="Stacktrace">0x.* in divide_media_token ()</re>
    </pattern>

<!-- Converted from compiz.xml -->

    <pattern url="https://launchpad.net/bugs/810182">
	<re key="Package">^nux-tools </re>
	<re key="Title">unity_support_test crashed with SIGSEGV</re>
        <re key="UnitySupportTest">extension "GLX" missing</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/810182">
	<re key="Package">^nux-tools </re>
	<re key="Title">unity_support_test crashed with SIGSEGV</re>
        <re key="Stacktrace">get_opengl_version</re>
    </pattern>

<!-- compizconfig-settings-manager -->

    <pattern url="https://launchpad.net/bugs/198758">
	    <re key="Package">^compizconfig-settings-manager </re>
	    <re key="Traceback">Constants.py</re>
	    <re key="Traceback">in .module.</re>
	    <re key="Traceback">Error: unsupported locale setting</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/832458">
	<re key="Package">^compizconfig-settings-manager 0.9.5.92-0ubuntu1</re>
	<re key="Title">ccsm crashed with KeyError in compizconfig.Plugin.ApplyStringExtensions</re>
	<re key="Traceback">in ParseSettings</re>
	<re key="Traceback">plugin.Update ()</re>
    </pattern>
    
    <pattern url="https://launchpad.net/bugs/833348">
	<re key="Package">^compizconfig-settings-manager </re>
	<re key="Title">ccsm crashed with KeyError in compizconfig.Plugin.ApplyStringExtensions</re>
	<re key="Traceback">in enable_plugin</re>
	<re key="Traceback">plugin.Context.UpdateExtensiblePlugins \(\)</re>
    <re key="Traceback">KeyError</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/833348">
	<re key="Package">^compizconfig-settings-manager </re>
	<re key="Title">ccsm crashed with KeyError in compizconfig.Plugin.ApplyStringExtensions \(src/compizconfig.c:6780\)\(\):</re>
	<re key="Traceback">File "/usr/lib/python2.7/dist-packages/ccm/Utils.py", line 328, in Update
    if self.Context.ProcessEvents\(\):</re>
	<re key="Traceback">File "compizconfig.pyx", line 1163, in compizconfig.Context.ProcessEvents \(src/compizconfig.c:9986\)</re>
	<re key="Traceback">File "compizconfig.pyx", line 1249, in compizconfig.Context.ChangedSettings.__get__ \(src/compizconfig.c:11104\)</re>
	<re key="Traceback">File "compizconfig.pyx", line 447, in compizconfig.SettingListToList \(src/compizconfig.c:2212\)</re>
	<re key="Traceback">File "compizconfig.pyx", line 927, in compizconfig.Plugin.Screen.__get__ \(src/compizconfig.c:7371\)</re>
	<re key="Traceback">File "compizconfig.pyx", line 783, in compizconfig.Plugin.Update \(src/compizconfig.c:5765\)</re>
	<re key="Traceback">File "compizconfig.pyx", line 870, in compizconfig.Plugin.ApplyStringExtensions \(src/compizconfig.c:6780\)</re>
	<re key="Traceback">KeyError:</re>
    </pattern>

<!-- Converted from computer-janitor.xml -->

    <pattern url="https://launchpad.net/bugs/721244">
        <re key="Package">^computer-janitor-gtk</re>
        <re key="Traceback">gtk\/ui.py</re>
        <re key="Traceback">in _toggled</re>        
        <re key="Traceback">DBusException: org.freedesktop.DBus.Python.computerjanitord.errors.PermissionDeniedError: com.ubuntu.computerjanitor.updatesystem</re>        
    </pattern>

<!-- Converted from computertemp.xml -->

    <pattern url="http://launchpad.net/bugs/318791">
        <re key="Package">^computertemp </re>
        <re key="Title">crashed with ValueError in parseloginfo</re>
        <re key="Traceback">loginfo.replace\('\{temp\}'</re>
        <re key="Traceback">ValueError: invalid literal for int\(\) with base 10: 'XX'</re>
    </pattern>

<!-- Converted from cron.xml -->

    <pattern url="https://launchpad.net/bugs/447080">
        <re key="Package">^cron </re>
        <re key="Stacktrace">pam_vsyslog</re>
        <re key="Stacktrace">_pam_load_module</re>
        <re key="Stacktrace">_pam_parse_conf_file</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/518161">
        <re key="Package">^cron </re>
        <re key="Stacktrace">pam_strerror</re>
        <re key="Stacktrace">pam_get_authtok_internal</re>
        <re key="Stacktrace">_pam_parse_conf_file</re>
    </pattern>

<!-- Converted from desktopcouch.xml -->

    <pattern url="http://launchpad.net/bugs/465216">
        <re key="Package">^desktopcouch </re>
        <re key="Title">desktopcouch-service crashed with RuntimeError in find_port__linux</re>
        <re key="Traceback">RuntimeError: Unable to find listening port</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/451767">
        <re key="Package">^desktopcouch </re>
        <re key="Title">desktopcouch-service crashed with ServerError in _request</re>
        <re key="Traceback">ServerError: \(401</re>
    </pattern>

<!-- dpkg -->
    <pattern url="https://launchpad.net/bugs/541595">
        <re key="ProblemType">^Package</re>
        <re key="SourcePackage">^dpkg</re>
        <re key="ErrorMessage">package .* is already installed and configured</re>
        <re key="OriginalTitle">package .* failed to install\/upgrade: .*package .* is already installed and configured</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/573696">
        <re key="ProblemType">^Crash</re>
        <re key="SourcePackage">^dpkg</re>
        <re key="AssertionMessage">dpkg: .* Assertion `r == stab.st_size' failed.</re>
    </pattern>


<!-- easycrypt -->

    <pattern url="https://launchpad.net/bugs/212312">
        <re key="Package">^easycrypt </re>
        <re key="Traceback">EasyCrypt.py", line .*, in closeAllCrypts</re>
        <re key="Traceback">KeyError</re>
    </pattern>

<!-- eglibc -->

    <pattern url="https://launchpad.net/bugs/652876">
        <re key="Package">^nscd </re>
        <re key="DpkgTerminalLog">initscript nscd, action "start" failed</re>
    </pattern>

<!-- empathy -->
    <pattern url="http://launchpad.net/bugs/829861">
        <re key="Package">^empathy</re>
        <re key="Stacktrace">_tp_base_client_handle_channels</re>
        <re key="Stacktrace">_tp_marshal_VOID__BOXED_BOXED_BOXED_BOXED_UINT64_BOXED_POINTER</re>
        <re key="Signal">11</re>
    </pattern>

<!-- Converted from fglrx-installer.xml -->

    <pattern url="https://launchpad.net/bugs/573748">
        <re key="Package">^fglrx-installer </re>
        <re key="DKMSBuildLog">DKMS make.log for.* kernel 2.6.3[345]</re>
        <re key="DKMSBuildLog">utsrelease.h: No such file or directory</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/1479913">
        <re key="Package">^fglrx-installer</re>
        <re key="DKMSBuildLog">GPL.*incompatible.*symbol.*pci_ignore_hotplug</re>
    </pattern>
    <pattern url="https://wiki.ubuntu.com/Bugs/InitramfsLiveMedia">
        <re key="SourcePackage">^fglrx-installer</re>
        <re key="DpkgTerminalLog">cp: cannot stat `/vmlinuz': No such file or directory</re>
        <re key="LiveMediaBuild">Ubuntu</re>
    </pattern>

<!-- Patterns regarding flashplugin-nonfree -->

    <!--<pattern url="http://launchpad.net/bugs/870643">
        <re key="Package">^flashplugin-downloader </re>
        <re key="VarLogDistupgradeApttermlog">unable to resolve host address..archive.canonical.com</re>
        <re key="VarLogDistupgradeApttermlog">download failed</re>
    </pattern>-->
    <pattern url="http://launchpad.net/bugs/873673">
        <re key="ProblemType">Package</re>
        <re key="Package">^flashplugin-downloader </re>
        <re key="VarLogDistupgradeApttermlog">download failed</re>
        <re key="VarLogDistupgradeApttermlog">The Flash plugin is NOT installed.</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/762968">
        <re key="Package">^flashplugin-installer 10.[23].*</re>
        <re key="DpkgTerminalLog">nspluginwrapper: no appropriate viewer found for \/usr\/lib\/flashplugin-installer\/libflashplayer.so</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/762968">
        <re key="Package">^flashplugin-installer 10.[23].*</re>
        <re key="VarLogDistupgradeTermlog">nspluginwrapper: no appropriate viewer found for \/usr\/lib\/flashplugin-installer\/libflashplayer.so</re>
    </pattern>

<!-- Converted from foomatic-filters.xml -->

    <pattern url="http://launchpad.net/bugs/440426">
        <re key="Package">^foomatic-filters </re>
        <re key="Stacktrace">#0.*_nl_intern_locale_data</re>
        <re key="Stacktrace">#1  0x.* in _nl_load_locale</re>
        <re key="Stacktrace">#2  0x.* in _nl_find_locale</re>
    </pattern>

<!-- Converted from freevo.xml -->
    <pattern url="https://bugs.launchpad.net/bugs/758821">
        <re key="Package">^freevo </re>
        <re key="DpkgTerminalLog">No such file or directory. ./usr/lib/pymodules/python2.5/freevo/version.py.</re>
    </pattern>

<!-- Converted from g15daemon.xml -->

    <pattern url="https://launchpad.net/bugs/617101">
        <re key="Package">^g15daemon </re>
        <re key="DpkgTerminalLog">uinput not found</re>
    </pattern>

<!-- gconf -->

    <pattern url="https://launchpad.net/bugs/817460">
	<re key="Package">^gconf2 </re>
	<re key="Title">gsettings-data-convert crashed with signal 5 in g_settings_get_range()</re>
	<re key="Signal">5</re>
	<re key="StacktraceTop">g_settings_get_range</re>
    </pattern>

<!-- gdm -->
    
    <pattern url="https://launchpad.net/bugs/805154">
	<re key="Package">^gdm </re>
	<re key="StacktraceTop">_nss_compat_getpwnam_r</re>
	<re key="Signal">11</re>
    </pattern>

<!-- Converted from glunarclock.xml -->

    <pattern url="http://launchpad.net/bugs/459389">
        <re key="Package">^glunarclock </re>
        <re key="Title">glunarclock-applet-2 crashed with SIGSEGV in strcmp</re>
        <re key="Stacktrace">strcmp</re>
        <re key="Stacktrace">glunarclock_applet_factory</re>
    </pattern>

<!-- Converted from gnome-alsamixer.xml -->

    <pattern url="http://launchpad.net/bugs/448180">
        <re key="Package">^gnome-alsamixer </re>
        <re key="Stacktrace">#0  .*gam_mixer_show_props_dialog .*\s*at gam-mixer\.c:596</re>
        <re key="Stacktrace">#(26|32) 0x.* in main .* at gam-main\.c:56</re>
    </pattern>

    <pattern url="http://launchpad.net/bugs/849415">
	<re key="Package">^gnome-alsamixer 0.9.7~cvs.20060916.ds.1-2ubuntu1</re>
	<re key="Title">gnome-alsamixer crashed with SIGSEGV in gtk_accel_group_connect_by_path()</re>
	<re key="StacktraceTop">gtk_accel_group_connect_by_path</re>
	<re key="StacktraceTop">gtk_action_connect_accelerator</re>
    </pattern>

<!-- gnome-desktop -->

    <pattern url="https://launchpad.net/bugs/861548">
	<re key="Package">^libgnome-desktop 3.2.0-0ubuntu4</re>
	<re key="Signal">6</re>
	<re key="Title">check_gl_texture_size assert failure</re>
        <re key="AssertionMessage">/usr/lib/gnome-desktop3/check_gl_texture_size: malloc()</re>
    </pattern>

<!-- Converted from gnome-disk-utility.xml -->

    <pattern url="https://launchpad.net/bugs/418300">
        <re key="Package">^gnome-disk-utility </re>
        <re key="StacktraceTop">gdu_pool_get_devices</re>
    </pattern>

<!-- gnome-games -->

    <pattern url="https://launchpad.net/bugs/857603">
	<re key="Package">^gnome-sudoku 1:3.2.0-0ubuntu1</re>
	<re key="Title">gnome-sudoku crashed with TypeError in function()</re>
	<re key="Traceback">TypeError: Expected a Gdk.Event, but got EventButton</re>
    </pattern>

<!-- gnome-online-accounts -->

    <pattern url="https://launchpad.net/bugs/843375">
	<re key="Package">^gnome-online-accounts </re>
	<re key="Signal">11</re>
	<re key="StacktraceTop">notification_cb</re>
	<re key="StacktraceTop">proxy_g_signal_cb</re>
	<re key="StacktraceTop">ffi_call_SYSV</re>
    </pattern>

<!-- Converted from gnome-settings-daemon.xml -->

    <pattern url="https://launchpad.net/bugs/839649">
	<re key="Package">^gnome-settings-daemon </re>
	<re key="Signal">11</re>
	<re key="Title">gnome-settings-daemon crashed with SIGSEGV in g_simple_async_result_new_error()</re>
	<re key="Stacktrace">on_bus_gotten</re>
	<re key="Stacktrace">g_simple_async_result_new_error</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/785418">
	<re key="Package">^gnome-settings-daemon </re>
	<re key="Signal">11</re>
        <re key="Title">gnome-settings-daemon crashed with SIGSEGV in gtk_hpaned_get_type()</re>
	<re key="StacktraceTop">gtk_hpaned_get_type</re>
	<re key="StacktraceTop">gtk_hscale_new_with_range</re>
    </pattern>

<!-- gnome-terminal -->

    <pattern url="https://launchpad.net/bugs/810681">
	<re key="Package">^gnome-terminal </re>
	<re key="Title">gnome-terminal crashed with SIGABRT in raise()</re>
	<re key="Stacktrace">(app->default_profile_id != NULL)</re>
	<re key="Signal">6</re>
    </pattern>

<!-- gm-notify -->

    <pattern url="https://launchpad.net/bugs/831491">
	<re key="Package">^gm-notify </re>
	<re key="Title">gm-notify crashed with GError in labelClick()</re>
	<re key="Traceback">D-BUS error: Method "LookupExtended" with signature "ssb" on interface "org.gnome.GConf.Database" doesn't exist</re>
    </pattern>

<!-- Converted from grub.xml -->

    <pattern url="https://launchpad.net/bugs/537123">
        <re key="ProblemType">^Package</re>
        <re key="SourcePackage">^grub2</re>
        <re key="DpkgTerminalLog">/etc/grub.d/README: 2: All: not found</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/495123">
        <re key="ProblemType">^Package</re>
        <re key="SourcePackage">^grub2</re>
        <re key="DpkgTerminalLog">grub-probe: error: not a directory</re>
    </pattern>

    <pattern url="http://launchpad.net/bugs/1639374">
        <re key="Package">^ubiquity 16.10.14</re>
        <re key="SourcePackage">grub-installer</re>
        <re key="UbiquitySyslog">Removing grub-pc \(2.02~beta2-36ubuntu11\)</re>
        <re key="UbiquitySyslog">dpkg: error processing package grub-pc \(--purge\)</re>
        <re key="UbiquitySyslog">subprocess installed pre-removal script returned error exit status 10</re>
    </pattern>

<!-- gst-plugins-good0.10  -->
    <pattern url="http://launchpad.net/bugs/831897">
	<re key="ProblemType">^Package</re>
	<re key="Package">^gstreamer0.10-plugins-good</re>
	<re key="ErrorMessage">/usr/lib/gstreamer-0.10/libgstjpegformat.so</re>
	<re key="ErrorMessage">gstreamer0.10-plugins-bad</re>
   </pattern>

<!-- gucharmap -->
    <pattern url="http://launchpad.net/bugs/854922">
	<re key="ProblemType">Package</re>
	<re key="Package">^libgucharmap7</re>
	<re key="ErrorMessage">trying to overwrite '/usr/lib/libgucharmap_2_90.so.7.0.0'</re>
	<re key="ErrorMessage">libgucharmap-2-90-7</re>
    </pattern>

<!-- Converted from gvfs.xml -->

    <pattern url="https://launchpad.net/bugs/436871">
        <re key="Package">^gvfs </re>
        <re key="Signal">11</re>
        <re key="Stacktrace">#0  gdu_pool_get_presentables.*at gdu-pool\.c</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/811049">
	<re key="Package">^gvfs</re>
	<re key="Signal">11</re>
	<re key="Title">crashed with SIGSEGV in g_vfs_job_try()</re>
	<re key="Stacktrace">g_vfs_job_try</re>
	<re key="Stacktrace">g_vfs_daemon_queue_job</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/832533">
	<re key="Package">^gvfs</re>
	<re key="ExecutablePath">/usr/lib/gvfs/gvfs-fuse-daemon</re>
	<re key="Signal">11</re>
	<re key="Stacktrace">g_daemon_vfs_get_async_bus</re>
	<re key="Stacktrace">g_daemon_volume_monitor_init</re>
	<re key="Stacktrace">g_type_create_instance</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/839828">
	<re key="Package">^gvfs</re>
	<re key="Title">gvfsd-http crashed with SIGSEGV in g_settings_get_child()</re>
	<re key="ExecutablePath">/usr/lib/gvfs/gvfsd-http</re>
	<re key="Signal">11</re>
	<re key="StacktraceTop">g_settings_get_child</re>
    </pattern>

<!-- Converted from gwibber.xml -->

    <pattern url="https://bugs.launchpad.net/ubuntu/+source/gwibber/+bug/522538">
        <re key="Package">^gwibber </re>
        <re key="Traceback">File &quot;/usr/lib/pymodules/python2.6/httplib2/__init__.py&quot;, line 750, in connect</re>
        <re key="Title">gwibber-service crashed with error in connect</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/849654">
	<re key="Package">^gwibber</re>
	<re key="Title">gwibber-service crashed with IOError in get_avatar_path</re>
	<re key="Traceback">IOError\: \[Errno 36\] File name too long</re>
    </pattern>
    
    <pattern url="https://launchpad.net/bugs/741035">
	    <re key="Package">^gwibber-service</re>
	    <re key="Traceback">storage.py", line .*, in maintenance</re>
	    <re key="Traceback">OperationalError</re>
    </pattern>

<!-- Converted from initramfs-tools.xml -->

    <pattern url="https://wiki.ubuntu.com/Bugs/InitramfsLiveMedia">
        <re key="Package">^initramfs-tools </re>
        <re key="DpkgTerminalLog">cp: cannot stat `/vmlinuz': No such file or directory</re>
        <re key="LiveMediaBuild">Ubuntu</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/798414">
        <re key="SourcePackage">^initramfs-tools</re>
        <re key="DpkgTerminalLog">gzip: stdout: No space left on device</re>
    </pattern>

<!-- Converted from iscsitarget.xml -->

    <pattern url="https://bugs.launchpad.net/bugs/782076">
        <re key="Package">^iscsitarget-dkms 1.4.20.2-1ubuntu1</re>
        <re key="DKMSBuildLog">implicit declaration of function ‘copy_io_context’</re>
    </pattern>

<!-- Converted from jockey.xml -->

    <pattern url="http://launchpad.net/bugs/413624">
        <re key="Package">^jockey-gtk </re>
        <re key="Traceback">backend.py</re>
        <re key="Traceback">in convert_dbus_exceptions</re>
        <re key="Traceback">BackendCrashError</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/275659">
        <re key="Package">^jockey </re>
        <re key="Traceback">org.freedesktop.DBus.Error.TimedOut: Activation of com.ubuntu.DeviceDriver timed out</re>
    </pattern>

    <pattern url="http://launchpad.net/bugs/841366">
	<re key="Package">^jockey</re>
	<re key="Title">jockey-backend crashed with TypeError in pulse_items()</re>
	<re key="Traceback">TypeError: an integer is required</re>
    </pattern>

<!-- Converted from libflickrnet2.1.5-cil.xml -->

    <pattern url="https://launchpad.net/bugs/182130">
        <re key="Package">^libflickrnet2.1.5-cil </re>
	<re key="DpkgTerminalLog">Assembly.*policy.2.1.FlickrNet.dll does not exist</re>
    </pattern>

<!-- libreoffice -->
    <pattern url="https://launchpad.net/bugs/832516">
        <re key="Package">^libreoffice</re>
        <re key="Signal">11</re>
        <re key="StacktraceTop">xcb_writev</re>
        <re key="StacktraceTop">splash_draw_progress</re>
    </pattern>

<!-- Converted from linux.xml -->

    <pattern url="https://wiki.ubuntu.com/KernelTeam/DebuggingUpdateErrors">
        <re key="Package">^linux </re>
        <re key="DpkgTerminalLog">\n short read in buffer_copy</re>
    </pattern>
    <pattern url="https://wiki.ubuntu.com/KernelTeam/DebuggingUpdateErrors">
        <re key="Package">^linux </re>
        <re key="Tags">apport-package</re>
        <re key="DpkgTerminalLog">\n foi lido um short em buffer_copy</re>
    </pattern>
    <pattern url="https://wiki.ubuntu.com/KernelTeam/DebuggingUpdateErrors">
        <re key="Package">^linux </re>
        <re key="Tags">apport-package</re>
        <re key="DpkgTerminalLog">\n lecture courte (short read) dans « buffer_copy » </re>
    </pattern>
    <pattern url="https://wiki.ubuntu.com/KernelTeam/DebuggingUpdateErrors">
        <re key="Package">^linux </re>
        <re key="Tags">apport-package</re>
        <re key="DpkgTerminalLog">\n lectura insuficiente en buffer_copy</re>
    </pattern>
    <pattern url="https://wiki.ubuntu.com/KernelTeam/DebuggingUpdateErrors">
        <re key="Package">^linux </re>
        <re key="Tags">apport-package</re>
        <re key="DpkgTerminalLog">\n nicht vollständig gelesen in buffer_copy</re>
    </pattern>
    <pattern url="https://bugs.launchpad.net/bugs/386042">
        <re key="Package">^linux </re>
        <re key="DpkgTerminalLog">/usr/share/debconf/confmodule: line 42: printf: write error: Broken pipe</re>
    </pattern>
    <pattern url="https://bugs.launchpad.net/bugs/407420">
        <re key="Package">^linux </re>
        <re key="DpkgTerminalLog">Running depmod.\nFailed to run depmod</re>
    </pattern>
    <pattern url="https://bugs.launchpad.net/bugs/417222">
        <re key="Package">^linux </re>
        <re key="DpkgTerminalLog">/boot/grub/menu.lst: Operation not supported</re>
    </pattern>
    <pattern url="https://wiki.ubuntu.com/Bugs/InitramfsLiveMedia">
        <re key="SourcePackage">^linux</re>
        <re key="DpkgTerminalLog">cp: cannot stat `.*/vmlinuz': No such file or directory</re>
        <re key="LiveMediaBuild">Ubuntu</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/322433">
        <re key="SourcePackage">^linux</re>
        <re key="DpkgTerminalLog">Purging configuration files</re>
        <re key="DpkgTerminalLog">FATAL: Could not open</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/798414">
        <re key="SourcePackage">^linux</re>
        <re key="DpkgTerminalLog">gzip: stdout: No space left on device</re>
    </pattern>

<!-- Converted from mail-notification.xml -->

    <pattern url="http://launchpad.net/bugs/351260">
        <re key="Package">^mail-notification </re>
        <re key="Stacktrace">#0  0x.* in mn_mail_icon_set_tip</re>
        <re key="Stacktrace">#1  0x.* in mn_shell_update_tooltip</re>
    </pattern>


    <pattern url="https://launchpad.net/bugs/746912">
        <re key="ProblemType">^Package</re>
        <re key="Package">^man-db </re>
        <re key="DpkgTerminalLog">debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/746912">
        <re key="ProblemType">^Package</re>
        <re key="Package">^man-db </re>
        <re key="VarLogDistupgradeApttermlog">debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process</re>
    </pattern>

<!-- Converted from msttcorefonts.xml -->

    <pattern url="https://launchpad.net/bugs/694913">
        <re key="SourcePackage">^msttcorefonts</re>
        <re key="DpkgTerminalLog">Fatal IO error.*X.*server</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/710046">
        <re key="SourcePackage">^msttcorefonts</re>
        <re key="DpkgTerminalLog">Another defoma process seems running</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/710046">
        <re key="SourcePackage">^msttcorefonts</re>
        <re key="VarLogDistupgradeApttermlog">Another defoma process seems running</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/633570">
        <re key="SourcePackage">^msttcorefonts</re>
        <re key="DpkgTerminalLog">wget: unable to resolve host address</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/633570">
        <re key="SourcePackage">^msttcorefonts</re>
        <re key="VarLogDistupgradeTermlog">wget: unable to resolve host address</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/921889">
        <re key="SourcePackage">^msttcorefonts</re>
        <re key="Title">package ttf-mscorefonts-installer .* failed to install/upgrade.*128</re>
        <re key="DpkgTerminalLog">Use of uninitialized value \$_\[1\] in join or string at \/usr\/share\/perl5\/Debconf\/DbDriver\/Stack.pm</re>
        <re key="DpkgTerminalLog">user did not accept the mscorefonts-eula license</re>
    </pattern>

<!-- Converted from nautilus.xml -->

    <pattern url="https://launchpad.net/bugs/362342">
        <re key="Package">^nautilus </re>
        <re key="Stacktrace">#0  .*g_list_remove.*\n.*glist\.c:338</re>
        <re key="Title">nautilus crashed with SIGSEGV in g_list_remove()</re>
    </pattern>

<!-- nautilus-open-terminal -->
 
    <pattern url="https://launchpad.net/bugs/865115">
	<re key="Package">^nautilus-open-terminal </re>
	<re key="Title">nautilus crashed with SIGSEGV in gconf_client_get()</re>
	<re key="Signal">11</re>
	<re key="StacktraceTop">gconf_client_get</re>
	<re key="StacktraceTop">gconf_client_get_bool</re>
    </pattern>

<!-- nautilus-script-manager -->
 
    <pattern url="https://launchpad.net/bugs/617095">
	<re key="Package">^nautilus-scripts-manager </re>
	<re key="Traceback">nautilus-scripts-manager", line .*, in retrieve_default_path</re>
	<re key="Traceback">IOError: \[Errno 21\]</re>
    </pattern>

<!-- nautilus-dropbox -->
 
    <pattern url="https://launchpad.net/bugs/937546">
        <re key="ProblemType">Package</re>
        <re key="Package">^nautilus-dropbox </re>
        <re key="DpkgHistoryLog">Upgrade: nautilus-dropbox.*0.7.1</re>
        <re key="DpkgHistoryLog">dpkg returned an error code</re>
    </pattern>

<!-- Converted from nspluginwrapper.xml -->

    <pattern url="http://launchpad.net/bugs/798459">
        <re key="Package">^nspluginwrapper</re>
        <re key="ProblemType">Package</re>
        <re key="DpkgTerminalLog">nspluginwrapper: double free or corruption \(out\)</re>
    </pattern>

<!-- Converted from ntfs-config.xml -->

    <pattern url="http://launchpad.net/bugs/529403">
        <re key="Package">^ntfs-config </re>
        <re key="Title">ntfs-config crashed with AttributeError in add_section</re>
        <re key="Traceback">in on_close_clicked</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/516826">
        <re key="Package">^ntfs-config </re>
        <re key="Title">ntfs-config crashed with AttributeError in add_section</re>
        <re key="Traceback">in on_ok_clicked</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/507831">
        <re key="Package">^ntfs-config </re>
        <re key="Title">ntfs-config crashed with AttributeError in add_section</re>
        <re key="Traceback">in on_auto_clicked</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/629246">
        <re key="Package">^ntfs-config </re>
        <re key="Traceback">NtfsConfig.py</re>
        <re key="Traceback">os.mkdir\(HAL_CONFIG_DIR\)</re>
        <re key="Traceback">OSError ?: \[Errno 2\] .* ?: '/etc/hal/fdi/policy'</re>
    </pattern>

<!-- Converted from nvidia-graphics-drivers-173.xml -->

    <pattern url="https://wiki.ubuntu.com/Bugs/InitramfsLiveMedia">
        <re key="Package">^nvidia-graphics-drivers-173 </re>
        <re key="DpkgTerminalLog">cp: cannot stat `/vmlinuz': No such file or directory</re>
        <re key="LiveMediaBuild">Ubuntu</re>
    </pattern>

<!-- Converted from nvidia-graphics-drivers.xml -->

    <pattern url="https://wiki.ubuntu.com/Bugs/InitramfsLiveMedia">
        <re key="Package">^nvidia-graphics-drivers </re>
        <re key="DpkgTerminalLog">cp: cannot stat `/vmlinuz': No such file or directory</re>
        <re key="LiveMediaBuild">Ubuntu</re>
    </pattern>

    <pattern url="https://wiki.ubuntu.com/Bugs/InitramfsLiveMedia">
        <re key="Package">^nvidia-current </re>
        <re key="DpkgTerminalLog">cp: cannot stat `/vmlinuz': No such file or directory</re>
        <re key="LiveMediaBuild">Ubuntu</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/1268257">
        <re key="Package">^nvidia-</re>
        <re key="DKMSBuildLog">mv: .*build/.tmp_nv.o</re>
    </pattern>

<!-- nvidia-common -->
    
    <pattern url="https://launchpad.net/bugs/825350">
	<re key="Package">^nvidia-common </re>
	<re key="Title">nvidia-detector crashed with ValueError in __get_value_from_name()</re>
	<re key="Traceback">ValueError: invalid literal for int\(\) with base 10: \'173-updates\'</re>
    </pattern>

<!-- oneconf -->
    <pattern url="https://launchpad.net/bugs/839286">
	<re key="Package">^oneconf</re>
	<re key="Title">oneconf-query crashed with DBusException in call_blocking()</re>
	<re key="Traceback">DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name :1.\d+ was not provided by any .service files</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/851997">
	<re key="Package">^oneconf</re>
	<re key="Title">oneconf-service crashed with TypeError in _sso_login_result\(\): 'NoneType' object is not subscriptable</re>
	<re key="Traceback">authorizer = OAuthAuthorizer\(token_key=credential\['token'\],</re>
    </pattern>

<!-- openjdk-9 -->

    <pattern url="https://launchpad.net/bugs/1550950">
        <re key="Package">^openjdk-9-jdk</re>
        <re key="DpkgTerminalLog">openjdk-9-(jdk|jdk-headless):.* \(9~(b107-0ubuntu1|b112-2|b114-0ubuntu1)\)</re>
        <re key="DpkgTerminalLog">include\/linux\/jawt_md.h.*openjdk-9-jdk-headless</re>
    </pattern>

<!-- Converted from openswan.xml -->
    <pattern url="https://launchpad.net/bugs/739001">
        <re key="Package">^openswan-modules-dkms </re>
        <re key="DKMSBuildLog">fatal error\: linux\/config.h\: No such file or directory</re>
    </pattern>

<!-- Converted from pitivi.xml -->

    <pattern url="http://launchpad.net/bugs/537619">
        <re key="Package">^pitivi </re>
        <re key="Title">pitivi crashed with TypeError in do_simple_paint()</re>
        <re key="Traceback">TypeError: Required argument 'cr' \(pos 1\) not found</re>
    </pattern>

<!-- Converted from plymouth.xml -->

    <pattern url="https://launchpad.net/bugs/743730">
        <re key="Package">^plymouth </re>
        <re key="DistroRelease">(11.10|11.04|10.10|10.04)</re>
        <re key="Stacktrace">ply_list_get_first_node</re>
        <re key="Stacktrace">ply_event_loop_run</re>
    </pattern>

<!-- Converted from policykit-1-gnome.xml -->

    <pattern url="https://launchpad.net/bugs/697095">
        <re key="Package">^policykit-1-gnome </re>
        <re key="StacktraceTop">g_datalist_id_set_data_full</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/509651">
        <re key="Package">policykit-1</re>
        <re key="StacktraceTop">dbus_message_iter_append_basic</re>
    </pattern>

<!-- Converted from postgresql-8.4.xml -->

    <pattern url="https://launchpad.net/bugs/264336">
        <re key="Package">^postgresql-8.4 </re>
        <re key="DpkgTerminalLog">The PostgreSQL server failed to start. Please check the log output</re>
        <re key="DpkgTerminalLog">FATAL:</re>
        <re key="DpkgTerminalLog">shmget\(key=.*\)\.</re>
        <re key="Tags">apport-package</re>
    </pattern>

<!-- Converted from qemulator.xml -->

    <pattern url="http://launchpad.net/bugs/321955">
        <re key="Package">^qemulator </re>
        <re key="Traceback">IndexError: could not find tree path</re>
        <re key="Traceback">in on_comboboxCDromdrive_changed</re>
    </pattern>

<!-- Converted from rhythmbox-ubuntuone-music-store.xml -->

    <pattern url="http://launchpad.net/bugs/602420">
	<re key="Package">^rhythmbox </re>
	<re key="StacktraceTop">g_value_set_object</re>
	<re key="StacktraceTop">gst_play_bin_get_property</re>
	<re key="StacktraceTop">g_object_get_valist</re>
    </pattern>

<!-- Applies to runit -->

    <pattern url="https://launchpad.net/bugs/1448164">
        <re key="Package">^(runit |bcron-run |vblade-persist |twoftpd-run |socklog-run |runit-upstart |getty-run |runit-systemd |runit-init |qmail-run |mongrel2-run |git-daemon-run |cereal |dnscache-run )</re>
        <re key="DpkgTerminalLog">runit \(2.1.2-3ubuntu1\)</re>
        <re key="DpkgTerminalLog">start:.*Upstart: Failed to connect to socket \/com\/ubuntu\/upstart:.*</re>
    </pattern>

<!-- Applies to samba -->

    <pattern url="https://launchpad.net/bugs/877852">
        <re key="Package">^samba</re>
        <re key="VarLogDistupgradeTermlog">Can't locate File\/Temp.pm in @INC</re>
        <re key="VarLogDistupgradeTermlog">Compilation failed in require at \/usr\/sbin\/update-inetd</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/1634119">
        <re key="SourcePackage">^samba</re>
        <re key="DpkgTerminalLog">Job for (smbd|nmbd|winbind)\.service failed because the control process exited with error code</re>
        <re key="SMBConf">\n\s*security\s*=\s*share\s*\n</re>
    </pattern>

<!-- Applies to samba4 -->

    <pattern url="http://launchpad.net/bugs/728840">
        <re key="Package">^samba4 </re>
        <re key="Package">4.0.0~alpha15~git20110124.dfsg1-2ubuntu1$</re>
        <re key="Traceback">LdbError: \(80, 'Failed to load modules from: \/usr\/lib\/samba\/ldb</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/728840">
        <re key="Package">^samba4 </re>
        <re key="Package">4.0.0~alpha15~git20110124.dfsg1-2ubuntu1$</re>
        <re key="DpkgTerminalLog">LdbError: \(80, 'Failed to load modules from: \/usr\/lib\/samba\/ldb</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/728840">
        <re key="Package">^samba4 </re>
        <re key="Package">4.0.0~alpha15~git20110124.dfsg1-2ubuntu1$</re>
        <re key="VarLogDistupgradeTermlog">LdbError: \(80, 'Failed to load modules from: \/usr\/lib\/samba\/ldb</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/728840">
        <re key="Package">^samba4 </re>
        <re key="Package">4.0.0~alpha15~git20110124.dfsg1-2ubuntu1$</re>
        <re key="VarLogDistupgradeTermlog">unable to stat module /usr/lib/samba/ldb/modules/samba</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/728840">
        <re key="Package">^samba4 </re>
        <re key="Package">4.0.0~alpha15~git20110124.dfsg1-2ubuntu1$</re>
        <re key="VarLogDistupgradeApttermlog">unable to stat module /usr/lib/samba/ldb/modules/samba</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/728840">
        <re key="Package">^samba4 </re>
        <re key="Package">4.0.0~alpha15~git20110124.dfsg1-2ubuntu1$</re>
        <re key="DpkgTerminalLog">unable to stat module /usr/lib/samba/ldb/modules/samba</re>
    </pattern>
    
    <pattern url="http://launchpad.net/bugs/849545">
	<re key="Package">^samba4 </re>
	<re key="Package">4.0.0~alpha17~git20110807.dfsg1-1ubuntu1</re>
	<re key="Title">upgradeprovision crashed with LdbError in connect()</re>
	<re key="Traceback">LdbError\: \(80\, \'dsdb_module_search_dn\: did not find base dn \@ROOTDSE \(0 results\)\'\)</re>
    </pattern>

<!-- indiv-screenlets -->

    <pattern url="http://launchpad.net/bugs/807129">
        <re key="SourcePackage">^indiv-screenlets</re>
        <re key="Tags">apport-crash</re>
        <re key="Traceback">gtk-close</re>
        <re key="Traceback">GError</re>
        <re key="Traceback">File "/usr/lib/pymodules/python2.7/screenlets/__init__.py", line [0-9]+, in load_buttons
    self\.closeb = self\.gtk_icon_theme\.load_icon \("gtk-close", 16, 0\)</re>
    </pattern>

<!-- Applies to software-center -->

    <pattern url="https://launchpad.net/bugs/717645">
        <re key="Package">^software-center </re>
        <re key="Traceback">ValueError\("Need either appname or pkgname or request"\)</re>
        <re key="Traceback">application.py</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/823428">
	<re key="Package">^software-center </re>
	<re key="Traceback">TypeError: character mapping must return integer, None or unicode</re>
	<re key="Title">software-center crashed with TypeError in normalize()</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/834038">
	<re key="Package">^software-center </re>
	<re key="Title">software-center-gtk3 crashed with DBusException in _convert_dbus_exception()</re>
	<re key="Traceback">DBusException: org.freedesktop.DBus.Error.UnknownMethod: Method "GetAll" with signature "s" on interface "org.freedesktop.DBus.Properties" doesn't exist</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/834494">
        <re key="Package">^software-center </re>
        <re key="Title">software-center-gtk3 crashed with UnicodeEncodeError in get_dbus_message()</re>
        <re key="Traceback">UnicodeEncodeError: 'ascii' codec can't encode character</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/827527">
	<re key="Package">^software-center </re>
	<re key="Title">software-center crashed with TypeError in run()</re>
	<re key="Traceback">TypeError: gi._glib.spawn_async: first argument must be a sequence of strings</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/854113">
	<re key="Package">^software-center </re>
	<re key="Title">software-center crashed with IndexError in __getitem__()</re>
	<re key="Traceback">IndexError: could not find tree path \'\d+\'</re>
    </pattern>

<!-- Applies to software-properties -->

    <pattern url="https://launchpad.net/bugs/831652">
	<re key="Package">^software-properties</re>
	<re key="Title">software-properties-gtk crashed with UnicodeEncodeError in ToggleSourceUse()</re>
	<re key="Traceback">UnicodeEncodeError: 'ascii' codec can't encode character</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/828850">
	<re key="Package">^software-properties</re>
	<re key="Title">software-properties-gtk crashed with DBusException in call_blocking\(\)</re>
	<re key="Traceback">DBusException: com\..*\.SoftwareProperties\.PermissionDeniedByPolicy: com\..*\.softwareproperties\.applychanges</re>
    </pattern>

<!-- Patterns for speakup.xml -->

    <pattern url="https://launchpad.net/bugs/726144">
        <re key="Package">^speakup 3.1.5.dfsg.1-1ubuntu1</re>
        <re key="DKMSBuildLog">buffers.c:33:46: error: .*struct vc_data.* has no member named .*vc_tty.*</re>
    </pattern>

<!-- Converted from splashy.xml -->

    <pattern url="https://launchpad.net/bugs/328089">
        <re key="Package">^splashy </re>
        <re key="Title">failed to install/upgrade:.*/etc/lsb-base-logging.sh.*lsb-base</re>
    </pattern>

<!-- Converted from sun-java6-bin.xml -->

    <pattern url="https://launchpad.net/bugs/303609">
        <re key="Package">^sun-java6-bin </re>
        <re key="DpkgTerminalLog">user did not accept the sun-dlj-v1-1 license</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/522383">
        <re key="Package">^sun-java6-bin </re>
        <re key="DpkgTerminalLog">debconf: \(Cannot connect to /tmp/aptdaemon-[0-9a-zA-Z]{6}/debconf.socket</re>
    </pattern>

<!-- Converted from sun-java6-doc.xml -->

    <pattern url="https://launchpad.net/bugs/85969">
        <re key="Package">^sun-java6-doc </re>
        <re key="DpkgTerminalLog">Abort installation of JDK documentation</re>
    </pattern>

<!-- Converted from sun-java6-jre.xml -->

    <pattern url="https://launchpad.net/bugs/303609">
        <re key="Package">^sun-java6-jre </re>
        <re key="DpkgTerminalLog">user did not accept the sun-dlj-v1-1 license</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/522383">
        <re key="Package">^sun-java6-jre </re>
        <re key="DpkgTerminalLog">debconf: \(Cannot connect to /tmp/aptdaemon-[0-9a-zA-Z]{6}/debconf.socket</re>
    </pattern>

<!-- Converted from system-config-samba.xml -->

    <pattern url="https://launchpad.net/bugs/749748">
        <re key="Package">^system-config-samba </re>
        <re key="Traceback">in .module.</re>    
        <re key="Traceback">ImportError: No module named glade</re>            
    </pattern>

<!-- Converted from telepathy-butterfly.xml -->

    <pattern url="http://launchpad.net/bugs/464902">
        <re key="Package">^telepathy-butterfly </re>
	<re key="Traceback">NotImplementedError</re>
	<re key="Traceback">switchboard_manager.py.*__on_user_invitation_failed</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/450951">
        <re key="Package">^telepathy-butterfly </re>
        <re key="Title">telepathy-butterfly crashed with KeyError in __getitem__\(\)</re>
        <re key="Traceback">session = self\._sessions\[session_id\]</re>
        <re key="Traceback">KeyError: \d+</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/628748">
        <re key="Package">^telepathy-butterfly </re>
        <re key="Title">telepathy\-butterfly crashed with KeyError in parse\(\)</re>
        <re key="Traceback">KeyError: 'Location'</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/649487">
        <re key="Package">^telepathy-butterfly </re>
        <re key="Traceback">text.py", line .*, in _signal_text_received</re>
        <re key="Traceback">UnicodeDecodeError</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/707508">
        <re key="Package">^telepathy-butterfly </re>
        <re key="Traceback">service.py", line .*, in add_to_connection</re>
        <re key="Traceback">KeyError: "Can't register the object-path handler for '\/org\/freedesktop\/Telepathy\/Connection\/butterfly\/msn\/.*\/RosterChannel\/List\/subscribe': there is already a handler"</re>
    </pattern>

    <pattern url="http://launchpad.net/bugs/726301">
	<re key="Package">^telepathy-mission-control-5</re>
	<re key="Signal">11</re>
	<re key="Stacktrace">g_str_hash</re>
	<re key="Stacktrace">mcd_dispatcher_client_needs_recovery_cb</re>
    </pattern>

<!-- Converted from ubiquity.xml -->
    <!--<pattern url="MediaError">
        <re key="Package">^ubiquity </re>
        <re key="UbiquitySyslog">loop1.*Read failure</re>
        <re key="UbiquitySyslog">attempt to access beyond end of device</re>
    </pattern>-->
    <pattern url="http://launchpad.net/bugs/894768">
        <re key="Package">^ubiquity 2.8.7</re>
        <re key="UbiquitySyslog">ubuntu install.py: IOError: \[Errno 22\] Invalid argument</re>
        <re key="UbiquitySyslog">install_misc.py", line 62(7|1), in copy_file</re>
        <re key="UbiquitySyslog">targetfh.(close|write)</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/850264">
        <re key="Package">^ubiquity 2.8.7</re>
        <re key="Architecture">amd64</re>
        <!-- this only matches english -->
        <re key="UbiquitySyslog">ubiquity: dpkg: error processing libc6 \(--configure\):</re>
    </pattern>
    <!--<pattern url="http://launchpad.net/bugs/870643">
        <re key="Package">^ubiquity </re>
        <re key="UbiquitySyslog">unable to resolve host address..archive.canonical.com</re>
        <re key="UbiquitySyslog">ubiquity: download failed</re>
        <re key="UbiquitySyslog">The Flash plugin is NOT installed.</re>
    </pattern>-->
    <pattern url="http://launchpad.net/bugs/876298">
        <re key="Package">^ubiquity 2.8.7</re>
        <re key="UbiquitySyslog">ubiquity: download failed</re>
        <re key="UbiquitySyslog">The Flash plugin is NOT installed.</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/876298">
        <re key="SourcePackage">^flashplugin-nonfree</re>
        <re key="DistroRelease">(11.10|11.04|10.10)</re>
        <re key="VarLogDistupgradeApttermlog">download failed</re>
        <re key="VarLogDistupgradeApttermlog">The Flash plugin is NOT installed.</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/876298">
        <re key="SourcePackage">^flashplugin-nonfree</re>
        <re key="DistroRelease">12.04</re>
        <re key="Package">(11.1.102.[56][235]|11.2.202.228ubuntu1|^flashplugin-installer$)</re>
        <re key="VarLogDistupgradeApttermlog">download failed</re>
        <re key="VarLogDistupgradeApttermlog">The Flash plugin is NOT installed.</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/876298">
        <re key="SourcePackage">^flashplugin-nonfree</re>
        <re key="DistroRelease">(11.10|11.04|10.10)</re>
        <re key="DpkgTerminalLog">download failed</re>
        <re key="DpkgTerminalLog">The Flash plugin is NOT installed.</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/876298">
        <re key="SourcePackage">^flashplugin-nonfree</re>
        <re key="DistroRelease">12.04</re>
        <re key="Package">(11.1.102.[56][235]|11.2.202.228ubuntu1|^flashplugin-installer$)</re>
        <re key="DpkgTerminalLog">download failed</re>
        <re key="DpkgTerminalLog">The Flash plugin is NOT installed.</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/870281">
        <re key="Package">^ubiquity 2.8.7</re>
        <re key="UbiquitySyslog">10.3.183.10ubuntu5</re>
        <re key="UbiquitySyslog">404: Not Found</re>
        <re key="UbiquitySyslog">The Flash plugin is NOT installed.</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/398614">
        <re key="Package">^ubiquity 2.8.7</re>
        <re key="Traceback">XStartupError: X server exited with return code 1</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/792652">
        <re key="Package">^ubiquity (2.6.10|2.8.7)</re>
        <re key="Traceback">debconf.py</re>
        <re key="Traceback">self.write.write\("%s %s\\n" % \(command, ' '.join\(map\(str, params\)\)\)\)</re>
        <re key="Traceback">ValueError: I/O operation on closed file</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/220961">
        <re key="Package">^ubiquity </re>
        <re key="UbiquitySyslog">No space left on device</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/998492">
        <re key="Package">^ubiquity </re>
        <re key="UbiquitySyslog">plugininstall.py: Failed to find package object for .*i386</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/1587602">
        <re key="Package">^ubiquity </re>
        <re key="UbiquitySyslog">sed:.*//etc/default/rcS:</re> 
    </pattern>

<!-- Converted from ubuntuone-client.xml -->

    <pattern url="http://launchpad.net/bugs/467397">
        <re key="Package">^ubuntuone-client </re>
        <re key="UbuntuOneOAuthLoginLog">KeyError: 'ROUND_CEiLiNG'</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/399937">
        <re key="Package">^ubuntuone-client </re>
        <re key="OriginalTitle">ubuntuone-syncdaemon crashed with ImportError in (.module.|__main__)</re>
        <re key="Traceback">in .module.</re>
        <re key="Traceback">ImportError\: </re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/528203">
        <re key="Package">^ubuntuone-client </re>
        <re key="Title">failed to install/upgrade: trying to overwrite '/usr/lib/ubuntuone-client/ubuntuone-login', which is also in package ubuntuone-client</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/554561">
        <re key="Package">^ubuntuone-client </re>
        <re key="Title">ubuntuone-syncdaemon crashed with AttributeError in _upgrade_metadata_3</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/420705">
        <re key="Package">^ubuntuone-client</re>
        <re key="Traceback">org\.freedesktop\.DBus\.Error\.NoServer</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/711162">
        <re key="Package">^ubuntuone-client</re>
        <re key="Traceback">connection\.py</re>
        <re key="Traceback">message\.append\(signature=signature, \*args\)</re>
        <re key="Traceback">ValueError: Unable to guess signature from an empty dict</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/711221">
        <re key="Package">^ubuntuone-client</re>
        <re key="Traceback">connection\.py.*in call_blocking</re>
        <re key="Traceback">message, timeout</re>
        <re key="Traceback">DBusException: org\.freedesktop\.DBus\.Error\.Disconnected: Connection was disconnected before a reply was received</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/865105">
        <re key="Package">^ubuntuone-client</re>
        <re key="StacktraceTop">g_settings_get_boolean</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/1102685">
        <re key="Package">^ubuntuone-client</re>
        <re key="Traceback">Can not override a type Object, which is not in a gobject introspection typelib</re>
    </pattern>

<!-- Ubuntu One client python libraries -->
    <pattern url="http://launchpad.net/bugs/1009573">
        <re key="Package">^python-ubuntuone-client.*1\.2\.2-0ubuntu2\.2</re>
        <re key="DpkgTerminalLog">except pycurl\.error as e:</re>
    </pattern>

<!-- Ubuntu One installer -->
    <pattern url="http://launchpad.net/bugs/853060">
        <re key="Package">^ubuntuone-installer</re>
        <re key="Traceback">types.py", line .*, in function</re>
        <re key="Traceback">GError: .*-control-panel-gtk</re>
    </pattern>


<!-- Ubuntu SSO Client -->
    <pattern url="http://launchpad.net/bugs/711413">
        <re key="Package">^ubuntu-sso-client</re>
        <re key="Traceback">org\.freedesktop\.DBus\.Error\.NoServer</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/940669">
        <re key="Package">^ubuntu-sso-client 3.0.0-0ubuntu1</re>
        <re key="Title">ubuntu-sso-login crashed with SIGSEGV in (QSocketNotifier::|)setEnabled</re>
        <re key="Signal">11</re>
        <re key="Tags">apport-crash</re>
        <re key="StacktraceTop">QSocketNotifier::setEnabled</re>
        <re key="StacktraceTop">QMetaObject::activate</re>
        <re key="StacktraceTop">QSocketNotifier::activated</re>
    </pattern>

<!-- Converted from update-manager.xml -->

    <pattern url="https://launchpad.net/bugs/341503">
        <re key="Package">^update-manager </re>
        <re key="Traceback">in requiredDownload</re>
        <re key="Traceback">pm.[GetArchives|get_archives]</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/618951">
        <re key="Package">^update-manager </re>
        <re key="Traceback">InstallBackendAptdaemon.py</re>
        <re key="Traceback">in commit</re>
        <re key="Traceback">DBusException</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/626798">
        <re key="Package">^update-manager </re>
        <re key="Title">update-manager crashed with DBusException in _run\(\)</re>
        <re key="Traceback">yield self._transaction.run\(.*\)</re>
        <re key="Traceback">DBusException: org.*.DBus.Error.NoReply: Did not receive a reply.</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/659438">
        <re key="Traceback">pm.get_archives</re>
        <re key="Traceback">I wasn't able to locate file for the.*package.</re>
        <re key="Package">^update-manager </re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/819234">
	<re key="Package">^update-manager </re>
	<re key="Traceback">NotAuthorizedError: org.freedesktop.PolicyKit.Error.NotAuthorized: \('system-bus-name', \{'name':  \':1.\d+'\}\): org.debian.apt.install-or-remove-packages</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/873424">
	<re key="Package">^update-manager 1:0.150</re>
	<re key="Traceback">check-new-release-gtk", line .*, in on_button_ask_me_later_clicked</re>
        <re key="Traceback">TypeError: integer argument expected, got float</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/810255">
	<re key="Package">^update-manager </re>
	<re key="Title">update-manager crashed with UnicodeEncodeError in get_dbus_message\(\): 'ascii' codec can't encode character(s)?( u'\\.*')? in position \d+(-\d+)?: ordinal not in range\(128\)</re>
	<re key="Traceback">UnicodeEncodeError: 'ascii' codec can't encode character(s)?( u'\\.*')? in position \d+(-\d+)?: ordinal not in range\(128\)</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/854090">
        <re key="Package">^(aptdaemon|oneconf|synaptic|update-manager) </re>
        <re key="Title">(aptd|oneconf-service|synaptic|update-manager) crashed with SIGSEGV in debListParser::LoadReleaseInfo()</re>
        <re key="StacktraceTop">debListParser::LoadReleaseInfo.*(from /usr/lib/libapt-pkg.so.4.11|at deb/deblistparser.cc:\d+)</re>
    </pattern>
    
    <pattern url="https://launchpad.net/bugs/898851">
	<re key="Package">^update-manager </re>
	<re key="Traceback">types.py", line .*, in function</re>
        <re key="Traceback">TypeError: Must be number, not tuple</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/818760">
        <re key="Package">^update-manager </re>
        <re key="Traceback">socket.py", line .*, in readline</re>
        <re key="Traceback">timeout: timed out</re>
    </pattern>

<!-- Converted from update-notifier.xml -->

    <pattern url="https://launchpad.net/bugs/340479">
        <re key="Package">^update-notifier </re>
        <re key="Title">apt_check.py crashed with SIGSEGV in pkgCacheGenerator::MergeList</re>
        <re key="StacktraceTop">pkgCacheGenerator::MergeList</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/440498">
        <re key="Package">^update-notifier </re>
        <re key="Title">apt_check.py crashed with SIGSEGV in pkgCacheGenerator::ListParser::NewDepends</re>
        <re key="Stacktrace">pkgCacheGenerator::ListParser::NewDepends</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/1003100">
        <re key="Package">^update-notifier-common </re>
        <re key="DpkgTerminalLog">KeyError: 'paquetes'</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/1003100">
        <re key="Package">^update-notifier-common </re>
        <re key="VarLogDistupgradeApttermlog">KeyError: 'paquetes'</re>
    </pattern>

<!-- zeitgeist -->

    <pattern url="http://launchpad.net/bugs/807950">
	<re key="Package">^zeitgeist</re>
	<re key="Title">zeitgeist-daemon crashed with LookupError in remove_from_connection</re>
	<re key="Traceback">LookupError: &lt;_zeitgeist.engine.remote.RemoteInterface at /org/gnome/zeitgeist/log/activity at *</re>
	<re key="Traceback">is not exported at a location matching \(None,None\)</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/834067">
	<re key="Package">^zeitgeist</re>
	<re key="Title">zeitgeist-daemon crashed with SIGSEGV in Xapian::WritableDatabase::add_document()</re>
	<re key="StacktraceTop">Xapian::WritableDatabase::add_document</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/840542">
	<re key="Package">^zeitgeist</re>
	<re key="Title">zeitgeist-daemon crashed with SIGSEGV in std::_Rb_tree_increment()</re>
	<re key="StacktraceTop">std::_Rb_tree_increment</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/841922">
	<re key="Package">^zeitgeist (0.7.1-1|0.8.2-1)</re>
	<re key="Title">zeitgeist-daemon crashed with DocNotFoundError in _check_index_and_start_worker()</re>
	<re key="Traceback">DocNotFoundError: Document \d+ not found</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/841878">
	<re key="Package">^zeitgeist</re>
        <re key="Title">zeitgeist-daemon crashed with DatabaseCorruptError in _check_index_and_start_worker()</re>
        <re key="Traceback">_check_index_and_start_worker</re>
	<re key="Traceback">DatabaseCorruptError: (Data ran out unexpectedly when reading posting list|Unexpected end of posting list for|Expected block.*not 1)</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/839798">
	<re key="Package">^zeitgeist</re>
	<re key="Title">zeitgeist-daemon crashed with RangeError in _check_index\(\)</re>
	<re key="Traceback">RangeError: Value in posting list too large.</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/839672">
	<re key="Package">^zeitgeist</re>
	<re key="Title">zeitgeist-daemon crashed with DatabaseError in _check_index\(\)</re>
	<re key="Traceback">DatabaseError: Error reading block.*: got end of file</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/848710">
	<re key="Package">^zeitgeist</re>
	<re key="Title">zeitgeist-daemon crashed with OperationalError in execute()</re>
	<re key="Traceback">OperationalError: database is locked</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/849595">
	<re key="Package">^zeitgeist</re>
	<re key="Title">zeitgeist-daemon crashed with DatabaseError in execute()</re>
	<re key="Traceback">DatabaseError: database disk image is malformed</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/832092">
	<re key="Package">^zeitgeist</re>
	<re key="Title">zeitgeist-daemon crashed with DBusException in call_blocking()</re>
	<re key="Traceback">DBusException: org.freedesktop.DBus.Error.Disconnected: Connection is closed</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/839837">
	<re key="Package">^zeitgeist</re>
	<re key="Title">zeitgeist-daemon crashed with DatabaseCorruptError in _check_index()</re>
	<re key="Traceback">DatabaseCorruptError: Data ran out unexpectedly when reading posting list.</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/841413">
	<re key="Package">^zeitgeist</re>
	<re key="Title">zeitgeist-daemon crashed with SIGSEGV in ChertTable::add_item_to_block()</re>
	<re key="Signal">11</re>
	<re key="StacktraceTop">ChertTable::add_item_to_block</re>
    </pattern>
    
    <pattern url="https://launchpad.net/bugs/896445">
	    <re key="Package">^zeitgeist</re>
	    <re key="Traceback">fts.py</re>
  	    <re key="Traceback">in __init__</re>
   	    <re key="Traceback">DatabaseLockError\: Unable to get write lock on .*\: already locked</re>
    </pattern>

<!-- Converted from libxcb.xml -->
    <pattern url="http://launchpad.net/bugs/507062">
        <re key="AssertionMessage">_XAllocID:.*ret.*inval_id</re>
    </pattern>

<!-- branding-ubuntu bugs -->

    <pattern url="http://launchpad.net/bugs/753449">
        <re key="Package">branding-ubuntu</re>
        <re key="ErrorMessage">/usr/share/gnome-games/quadrapassel/pixmaps/quadrapassel.svg.*quadrapassel</re>
    </pattern>

<!-- pyatspi bugs -->
    <pattern url="http://launchpad.net/bugs/827100">
        <re key="Package">pyatspi</re>
        <re key="DpkgTerminalLog">SyntaxError: \('invalid syntax', \('/usr/lib/python2.7/dist-packages/pyatspi/text.py', 474,</re>
    </pattern>

<!-- language-selector bugs -->
     <pattern url="https://launchpad.net/bugs/619363">
        <re key="Package">^language-selector</re>
        <re key="Traceback">in _inline_callbacks</re>
        <re key="Traceback">DBusException</re>
    </pattern>
    <pattern url="http://launchpad.net/bugs/827176">
        <re key="Package">language-selector</re>
        <re key="Traceback">File "/usr/bin/fontconfig-voodoo"</re>
        <re key="Traceback">DBusException: org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature "ss" on interface "org.freedesktop.DBus.Properties" doesn't exist</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/833065">
	<re key="Package">^language-selector</re>
	<re key="Title">fontconfig-voodoo crashed with TypeError in getUserDefaultLanguage()</re> 
	<re key="Traceback">TypeError: expected string or buffer</re>
    </pattern>
    
    <pattern url="https://launchpad.net/bugs/856975">
	<re key="Package">^language-selector</re>
	<re key="Title">fontconfig-voodoo crashed with DBusException in __new__()</re>
	<re key="Traceback">DBusException: org.freedesktop.DBus.Error.FileNotFound: Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or directory</re>
    </pattern>

<!-- ubuntu-meta -->
    <pattern url="http://launchpad.net/bugs/828759">
        <re key="Package">ubuntu-desktop</re>
        <re key="VarLogDistupgradeApttermlog">dpkg: dependency problems prevent configuration of ubuntu-desktop:</re>
        <re key="VarLogDistupgradeApttermlog">Package at-spi2-core is not installed.</re>
        <re key="VarLogDistupgradeApttermlog">Package libatk-adaptor is not installed.</re>
    </pattern>

<!-- emerald -->
    <pattern url="http://launchpad.net/bugs/726229">
        <re key="Package">emerald</re>
        <re key="StacktraceTop">decor_quads_to_property \(\) from /usr/lib/libdecoration.so.0</re>
    </pattern>

<!-- sessioninstaller -->
    <pattern url="http://launchpad.net/bugs/716711">
        <re key="Package">sessioninstaller</re>
        <re key="Traceback">sessioninstaller/core\.py</re>
        <re key="Traceback">_install_provide_files</re>
        <re key="Traceback">raise errors\.ModifyInternalError\(message\)</re>
    </pattern>
    
<!-- gnome-codec-install -->
    <pattern url="http://launchpad.net/bugs/834133">
        <re key="Package">gnome-codec-install</re>
        <re key="Traceback">yield self\._transaction.run\(\)</re>
        <re key="Traceback">gstreamer0.10-plugins-ugly: Depends:</re>
    </pattern>
    
    <pattern url="http://launchpad.net/bugs/715523">
        <re key="Package">^gnome-codec-install</re>
        <re key="Traceback">gtkwidgets.py", line .*, in _run</re>
        <re key="Traceback">DBusException: org.freedesktop.DBus.Error.NoReply</re>
    </pattern>
    
<!-- dconf-gsettings-backend -->
    <pattern url="http://launchpad.net/bugs/832536">
        <re key="Package">dconf-gsettings-backend</re>
        <re key="Signal">5</re>
        <re key="Title">dconf-service crashed with signal 5 in __libc_start_main\(\)</re>
        <re key="Stacktrace">dconf_state_init_session</re>
    </pattern>
    
<!-- gnome-app-install -->
    <pattern url="http://launchpad.net/bugs/339148">
        <re key="Package">gnome-app-install</re>
        <re key="Traceback">Menu.py</re>
        <re key="Traceback">in _refilter</re>
        <re key="Traceback">name = model\.get_value\(model\.get_iter\(path\), COL_NAME\)</re>
        <re key="Traceback">ValueError</re>
    </pattern>
    
<!-- libgtk-x11-2.0.so -->
    <pattern url="http://launchpad.net/bugs/729150">
        <re key="Signal">11</re>
        <re key="Stacktrace">find_image_offset</re>
        <re key="Stacktrace">gtkiconcache</re>
    </pattern>

<!-- oneconf, server unavailable -->
    <pattern url="https://launchpad.net/bugs/851169">
        <re key="Package">^oneconf</re>
        <re key="Title">oneconf-service crashed with ServerNotFoundError in _conn_request\(\): Unable to find the server at apps.ubuntu.com</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/856576">
        <re key="Package">^oneconf</re>
        <re key="Title">oneconf-query crashed with IOError in translation\(\): \[Errno 2\] No translation file found for domain: 'oneconf'</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/1102715">
        <re key="Package">^oneconf</re>
        <re key="Title">No module named oneconf.version</re>
    </pattern>
    
<!-- balazar -->
    <pattern url="http://launchpad.net/bugs/132636">
        <re key="Package">balazar</re>
        <re key="Traceback">GLError</re>
        <re key="Traceback">_soya.check_gl_error</re>
        <re key="Traceback">_soya.render</re>
    </pattern>

    <pattern url="http://launchpad.net/bugs/852343">
        <re key="Package">indicator-session</re>
        <re key="Title">gtk-logout-helper crashed with signal 5</re>
    </pattern>

    <pattern url="http://launchpad.net/bugs/850662">
        <re key="Package">indicator-sound</re>
        <re key="StacktraceTop">pa_cvolume_set</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/264336">
        <re key="Package">^postgresql</re>
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">SHMMAX</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/656351">
        <re key="Package">^postgresql</re>
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">authentication option not in name=value format: sameuser</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/783930">
        <re key="Package">^postgresql-common</re>
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">Error: /var/lib/postgresql/.* is not accessible or does not exist</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/783930">
        <re key="Package">^postgresql-common</re>
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">Error: /var/lib/postgresql/.* is not accessible or does not exist</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/784321">
        <re key="Package">^postgresql</re>
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">server.key.*Permission denied</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/842590">
        <re key="Package">^postgresql</re>
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">could not translate host name "localhost"</re>
    </pattern>

    <pattern url ="http://launchpad.net/bugs/871083">
        <re key="Package">^libpam-modules </re>
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeApttermlog">'./usr/share/man/man8/pam_shells.8.gz' is different from the same file on the system</re>
    </pattern>

    <pattern url ="http://launchpad.net/bugs/773172">
        <re key="ProblemType">^Package</re>
        <re key="VarLogDistupgradeApttermlog">dpkg-deb --fsys-tarfile returned error exit status</re>
    </pattern>

    <pattern url ="http://launchpad.net/bugs/773172">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">dpkg-deb --fsys-tarfile returned error exit status</re>
    </pattern>

    <pattern url ="http://launchpad.net/bugs/773172">
        <re key="ProblemType">^Package</re>
        <re key="DpkgTerminalLog">corrupted filesystem tarfile</re>
    </pattern>


    <pattern url="https://launchpad.net/bugs/883439">
	<re key="Package">^plymouth-theme-ubuntu-text </re>
	<re key="ProblemType">^Package</re>
	<re key="DefaultPlymouth">/lib/plymouth/themes/satanic-logo/satanic-logo.plymouth </re>
	<re key="VarLogDistUpgradeApttermlog">update-alternatives: error: readlink.*/etc/alternatives/text.plymouth.* failed: Invalid argument</re>
    </pattern>

    <pattern url ="http://launchpad.net/bugs/887892">
        <re key="ProblemType">^Package</re>
	<re key="Package">^udev (175-0ubuntu1|173)</re>
        <re key="VarLogDistupgradeApttermlog">unrecognized option '--convert-db'</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/182629">
	<re key="Package">^gksu</re>
        <re key="Title">SIGSEGV in gdk_window_set_opacity</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/90312">
	<re key="Package">^gksu</re>
        <re key="Title">SIGSEGV in gdk_draw_pixbuf</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/898874">
	<re key="Package">^gksu</re>
        <re key="Title">SIGSEGV in (.*__strlen_|fputs)</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/442941">
        <re key="DistroRelease">Ubuntu 11.04</re>
        <re key="Package">^tzdata </re>
        <re key="DpkgTerminalLog">tzdata 2011f-1</re>
        <re key="DpkgTerminalLog">post-installation.*128</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/442941">
        <re key="DistroRelease">Ubuntu 10.04</re>
        <re key="Package">^tzdata </re>
        <re key="DpkgTerminalLog">tzdata 2010i-1</re>
        <re key="DpkgTerminalLog">post-installation.*128</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/442941">
        <re key="DistroRelease">Ubuntu (11.04|10.10|10.04)</re>
        <re key="Package">^tzdata </re>
        <re key="DpkgTerminalLog">could not open /var/cache/debconf/config.dat</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/915271">
        <re key="Package">^libreoffice</re>
        <re key="Title">rmdir.*basis3.4</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/915271">
        <re key="Package">^libreoffice</re>
        <re key="VarLogDistupgradeApttermlog">rmdir.*basis3.4</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/915271">
        <re key="Package">^libreoffice</re>
        <re key="DpkgTerminalLog">rmdir.*basis3.4</re>
    </pattern>

    <pattern url="http://launchpad.net/bugs/911436">
        <re key="Package">^(cups-client |samba |system-config-printer |evolution-data-server |landscape-client |software-center |libvirt |gnucash |gwibber |git |kde-runtime |cups )</re>
        <re key="Stacktrace">p11_kit_initialize_registered</re>
    </pattern>

    <pattern url="http://launchpad.net/bugs/925049">
        <re key="Package">^libreoffice</re>
        <re key="StacktraceTop">::notifyInternal()</re>
    </pattern>

<!-- xorg-server -->
    <pattern url="http://wiki.ubuntu.com/X/Bugs/Transitions">
      <re key="ErrorMessage">installing xserver-xorg-core would break existing software</re>
      <re key="Package">^xserver-xorg-core</re>
      <re key="ProblemType">^Package</re>
      <re key="DpkgTerminalLog"> installing xserver-xorg-core would break existing software</re>
    </pattern>

<!-- vboxgtk -->
    <pattern url="https://launchpad.net/bugs/511601">
        <re key="Package">^vboxgtk</re>
        <re key="Traceback">components.py", line .*, in __getattr__</re>
        <re key="Traceback">AttributeError: 'MachineState' interfaces do not define a constant 'Discarding'</re>
    </pattern>

<!-- clamav -->
    <pattern url="https://launchpad.net/bugs/1015337">
        <re key="Package">^clamav-base 0.97.5\+dfsg-1ubuntu0.12.04.1</re>
        <re key="DpkgTerminalLog">install: cannot stat `/usr/share/doc/clamav-base/examples/main.cvd': No such file or directory</re>
    </pattern>

<!-- ubuntu-release-upgrader -->
    <pattern url="https://launchpad.net/bugs/1023055">
        <re key="Package">^ubuntu-release-upgrader-core </re>
        <re key="Traceback">from DistUpgrade.DistUpgradeVersion import VERSION</re>
        <re key="Traceback">ImportError: No module named DistUpgrade.DistUpgradeVersion</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/1534374">
        <re key="Package">^ubuntu-release-upgrader-core </re>
        <re key="Dependencies">gcc-4.9-base 4.9.3-0ubuntu4</re>
        <re key="VarLogDistupgradeMainlog">lsb-release: 'trusty'</re>
        <re key="VarLogDistupgradeMainlog">plugins for condition 'vividPreCacheOpen'</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/1384946">
        <re key="Package">^ubuntu-release-upgrader-core </re>
        <re key="VarLogDistupgradeAptlog">Holding Back gnuplot-nox</re>
        <re key="VarLogDistupgradeAptlog">Holding Back gnuplot-x11</re>
        <re key="VarLogDistupgradeAptlog">\(9\) gnuplot-x11</re>
        <re key="VarLogDistupgradeAptlog">\(9\) gnuplot-nox</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/996916">
        <re key="Package">^(ubuntu-release-upgrader-core |update-manager)</re>
        <re key="VarLogDistupgradeMainlog">blacklist expr '\^postgresql-.*\[0-9\]\\.\[0-9\].*' matches</re>
        <re key="VarLogDistupgradeMainlog">The package 'postgresql-.*' is marked for removal but it's in the removal blacklist</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/1605259">
        <re key="Package">^ubuntu-release-upgrader-core </re>
        <re key="VarLogDistupgradeMainlog">ERROR aufs setup failed</re>
    </pattern>
    <!-- don't consolidate this Xorg PPA issue with search-bugs so we can be informative about resolving it -->
    <pattern url="https://launchpad.net/bugs/1069133">
        <re key="Package">^ubuntu-release-upgrader-core </re>
        <re key="VarLogDistupgradeAptlog">xserver-xorg.*~gd~(t|u|v|w)</re>
        <!-- the following bits may have been overly specific i.e. got no false positives w/o them  -->
        <!-- <re key="VarLogDistupgradeAptclonesystemstate.tar">\./etc/apt/sources\.list\.d/oibaf-graphics-drivers.*list</re> -->
        <!-- <re key="VarLogDistupgradeMainlog">pkgProblemResolver</re> -->
    </pattern>
    <pattern url="https://launchpad.net/bugs/1510841">
        <re key="Package">^ubuntu-release-upgrader-core </re>
        <re key="VarLogDistupgradeMainlog">MetaPkgs: \S+ \S+</re>
        <re key="VarLogDistupgradeMainlog">marked for removal but it's in the removal blacklist</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/1610756">
        <re key="Package">^ubuntu-release-upgrader-core </re>
        <re key="VarLogDistupgradeAptlog">Holding Back backuppc:\w+ rather than change libcgi-pm-perl</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/1611737">
        <re key="Package">^ubuntu-release-upgrader-core </re>
        <re key="VarLogDistupgradeMainlog">ros-(indigo|jade)</re>
        <re key="VarLogDistupgradeAptlog">Broken libboost</re>
        <!-- Not every u-r-u bug contains the full log -->
        <!-- <re key="VarLogDistupgradeMainlog">Dist-upgrade failed.*pkgProblemResolver</re> -->
    </pattern>

<!-- compiz -->
    <pattern url="https://launchpad.net/bugs/1366351">
        <re key="Package">^compiz-core 1:0.9.12\+14.10.2014</re>
        <re key="Title">compiz crashed with SIGSEGV in g_closure_invoke()</re>
        <re key="Signal">11</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/1433320">
        <re key="Package">^systemd</re>
        <re key="ExecutablePath">/lib/systemd/systemd-</re>
        <re key="Signal">6</re>
        <re key="JournalErrors.txt">systemd-.*\.service: Watchdog timeout</re>
    </pattern>

<!-- nginx -->
    <pattern url="https://launchpad.net/bugs/1512344">
        <re key="ProblemType">^Package</re>
        <re key="Package">nginx-.*</re>
        <re key="SystemctlStatusFull_Nginx.txt">failed.*98: Address already in use</re>
    </pattern>

<!-- mysql -->
    <pattern url="https://launchpad.net/bugs/1571865">
        <!-- catch both mysql-server-5.7 and mysql-server 5.7.something -->
        <re key="Package">^mysql-server[ -]5\.7</re>
        <re key="Logs.var.log.mysql.error.log">\[ERROR\] unknown variable \'key_buffer\=</re>
    </pattern>
    <pattern url="https://launchpad.net/bugs/1571865">
        <!-- catch both mysql-server-5.7 and mysql-server 5.7.something -->
        <re key="Package">^mysql-server[ -]5\.7</re>
        <re key="Logs.var.log.mysql.error.log">\[ERROR\] unknown variable \'myisam-recover\=</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/1574168">
        <!-- catch both mysql-server-5.7 and mysql-server 5.7.something -->
        <re key="Package">^mysql-server[ -]5\.7</re>
        <re key="DpkgTerminalLog">mysql_upgrade: \[ERROR\] 1007: Can\'t create database \'performance_schema\'\; database exists</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/1574040">
        <!-- catch both mysql-server-5.7 and mysql-server 5.7.something -->
        <re key="Package">^mysql-server[ -]5\.7</re>
        <re key="DpkgTerminalLog">mysql_upgrade: \[ERROR\] 1049: Unknown database \'performance_schema\'</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/1571764">
        <!-- catch both mysql-server-5.7 and mysql-server 5.7.something -->
        <re key="Package">^mysql-server[ -]5\.7</re>
        <re key="Logs.var.log.mysql.error.log">\[ERROR\] Incorrect definition of table performance_schema\.</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/1490071">
        <re key="Package">^mysql-server-5\.(6|7)</re>
        <re key="DpkgTerminalLog">Aborting downgrade from \(at least\) 10\.0 to 5\.(6|7)\.</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/1579708">
        <re key="Package">^mysql-server-5\.7</re>
        <re key="modified.conffile..etc.mysql.conf.d.mysql.cnf">\[deleted\]</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/1579708">
        <re key="Package">^(mysql-server|mysql-server-5.7|mysql-common)</re>
        <re key="modified.conffile..etc.mysql.mysql.cnf">\[deleted\]</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/1579708">
        <re key="Package">^(mysql-server|mysql-server-5.7|mysql-common)</re>
        <re key="modified.conffile..etc.mysql.conf.d.mysql.cnf">\[deleted\]</re>
    </pattern>

    <pattern url="https://launchpad.net/bugs/1579708">
        <re key="Package">^(mysql-server|mysql-server-5.7|mysql-common)</re>
        <re key="modified.conffile..etc.mysql.my.cnf.fallback">\[deleted\]</re>
    </pattern>


</patterns>