cmd-output.log
   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
cmd: env PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin piuparts --keep-sources-list --allow-database --warn-on-leftovers-after-purge --basetgz=/tmp/debusine-fetch-exec-upload-jwqrkgo0/base_tar/system.tar.gz --scriptsdir=/tmp/debusine-fetch-exec-upload-jwqrkgo0/scripts /tmp/debusine-fetch-exec-upload-jwqrkgo0/chkrootkit-dbgsym_0.58b-4_i386.deb /tmp/debusine-fetch-exec-upload-jwqrkgo0/chkrootkit_0.58b-4_i386.deb
output (contains stdout and stderr):
0m0.0s INFO: ------------------------------------------------------------------------------
0m0.0s INFO: To quickly glance what went wrong, scroll down to the bottom of this logfile.
0m0.0s INFO: FAQ available at https://wiki.debian.org/piuparts/FAQ
0m0.0s INFO: The FAQ also explains how to contact us in case you think piuparts is wrong.
0m0.0s INFO: ------------------------------------------------------------------------------
0m0.0s INFO: piuparts version 1.5.1 starting up.
0m0.0s INFO: Command line arguments: /usr/bin/piuparts --keep-sources-list --allow-database --warn-on-leftovers-after-purge --basetgz=/tmp/debusine-fetch-exec-upload-jwqrkgo0/base_tar/system.tar.gz --scriptsdir=/tmp/debusine-fetch-exec-upload-jwqrkgo0/scripts /tmp/debusine-fetch-exec-upload-jwqrkgo0/chkrootkit-dbgsym_0.58b-4_i386.deb /tmp/debusine-fetch-exec-upload-jwqrkgo0/chkrootkit_0.58b-4_i386.deb
0m0.0s INFO: Running on: Linux debusine-worker-amd64-hades-04 6.1.0-29-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.123-1 (2025-01-02) x86_64
0m0.0s DEBUG: Starting command: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-jwqrkgo0/chkrootkit-dbgsym_0.58b-4_i386.deb']
0m0.0s DUMP: 
   new Debian package, version 2.0.
   size 66644 bytes: control archive=952 bytes.
       656 bytes,    12 lines      control
       933 bytes,     9 lines      md5sums
   Package: chkrootkit-dbgsym
   Source: chkrootkit
   Version: 0.58b-4
   Auto-Built-Package: debug-symbols
   Architecture: i386
   Maintainer: Debian Security Tools <team+pkg-security@tracker.debian.org>
   Installed-Size: 407
   Depends: chkrootkit (= 0.58b-4)
   Section: debug
   Priority: optional
   Description: debug symbols for chkrootkit
   Build-Ids: 0dca150882a58be0157cc74ff69dd8ddfce431be 3243d53d7d5b1f5b7ef430e5b4a1779d4833f1d4 4802c2630de22b0fef02ab3aea7e0a59076b7150 6ddf7ab05319bfaa95423264d2465be2d00c0c41 895f983f8fec8c07aa5473ab600c80dee4f23665 8adeb12a3913938f6cae4f16fc0dae755e8dc5c1 a5b17b5c0c27e65c85f7ed016761c71570d6aa6c f78c08a53567d25c0ad5ba1123001f2f09633300
0m0.0s DEBUG: Command ok: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-jwqrkgo0/chkrootkit-dbgsym_0.58b-4_i386.deb']
0m0.0s DEBUG: Starting command: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-jwqrkgo0/chkrootkit_0.58b-4_i386.deb']
0m0.0s DUMP: 
   new Debian package, version 2.0.
   size 324268 bytes: control archive=3312 bytes.
        93 bytes,     3 lines      conffiles
      1694 bytes,    25 lines      control
      1857 bytes,    27 lines      md5sums
      3264 bytes,    87 lines   *  postinst             #!/bin/sh
       727 bytes,    24 lines   *  postrm               #!/bin/sh
       249 bytes,     7 lines   *  prerm                #!/bin/sh
   Package: chkrootkit
   Version: 0.58b-4
   Architecture: i386
   Maintainer: Debian Security Tools <team+pkg-security@tracker.debian.org>
   Installed-Size: 946
   Depends: libc6 (>= 2.34)
   Recommends: binutils, default-mta | mail-transport-agent, iproute2 | net-tools, mailx, procps, systemd-sysv | cron | anacron | cron-daemon
   Enhances: bcron, biff, bind9, bsdextrautils, busybox-syslogd, citadel-server, coreutils, courier-mta, cron, cronie, dma, esmtp-run, exim4-daemon-heavy, exim4-daemon-light, fetchmail, findutils, fingerd, finit-sysv, gpm, grep, hdparm, inetutils-syslogd, inetutils-telnetd, login, lsof, mailutils, masqmail, mingetty, msmtp-mta, net-tools, nullmailer, openbsd-inetd, opensmtpd, openssh-client, openssh-server, passwd, postfix, procps, psmisc, rpcbind, rsh-redone-server, runit-init, rust-findutils, ssmtp, systemd-cron, systemd-sysv, sysvinit-core, sysvinit-utils, tar, tcm, tcpd, tcpdump, traceroute, util-linux, wtmpdb
   Built-Using: glibc (= 2.40-6)
   Section: misc
   Priority: optional
   Homepage: https://www.chkrootkit.org/
   Description: rootkit detector
    The chkrootkit security scanner searches for signs that the system is
    infected with a 'rootkit'. Rootkits are a form of malware that seek
    to exploit security flaws to grant unauthorised access to a
    computer or its services, generally for malicious purposes.
    .
    chkrootkit can identify signs of over 70 different rootkits (see the
    project's website for a list).
    .
    Please note that an automated tool like chkrootkit can never
    guarantee a system is uncompromised. Nor does every report always
    signify a genuine problem: human judgement and further investigation
    will always be needed to assure the security of your system.
0m0.0s DEBUG: Command ok: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-jwqrkgo0/chkrootkit_0.58b-4_i386.deb']
0m0.0s DEBUG: Created temporary directory /tmp/tmpyj34hmya
0m0.0s DEBUG: Unpacking /tmp/debusine-fetch-exec-upload-jwqrkgo0/base_tar/system.tar.gz into /tmp/tmpyj34hmya
0m0.0s DEBUG: Starting command: ['tar', '-C', '/tmp/tmpyj34hmya', '--auto-compress', '-xf', '/tmp/debusine-fetch-exec-upload-jwqrkgo0/base_tar/system.tar.gz']
0m3.1s DUMP: 
  tar: Ignoring unknown extended header keyword 'hdrcharset'
0m3.1s DEBUG: Command ok: ['tar', '-C', '/tmp/tmpyj34hmya', '--auto-compress', '-xf', '/tmp/debusine-fetch-exec-upload-jwqrkgo0/base_tar/system.tar.gz']
0m3.1s DEBUG: Starting command: ['mount', '-t', 'proc', 'proc', '/tmp/tmpyj34hmya/proc']
0m3.1s DEBUG: Command ok: ['mount', '-t', 'proc', 'proc', '/tmp/tmpyj34hmya/proc']
0m3.1s DEBUG: Starting command: ['mount', '-t', 'devpts', '-o', 'newinstance,noexec,nosuid,gid=5,mode=0620,ptmxmode=0666', 'devpts', '/tmp/tmpyj34hmya/dev/pts']
0m3.1s DEBUG: Command ok: ['mount', '-t', 'devpts', '-o', 'newinstance,noexec,nosuid,gid=5,mode=0620,ptmxmode=0666', 'devpts', '/tmp/tmpyj34hmya/dev/pts']
0m3.1s DEBUG: Starting command: ['mount', '-t', 'tmpfs', '-o', 'size=65536k', 'tmpfs', '/tmp/tmpyj34hmya/dev/shm']
0m3.1s DEBUG: Command ok: ['mount', '-t', 'tmpfs', '-o', 'size=65536k', 'tmpfs', '/tmp/tmpyj34hmya/dev/shm']
0m3.1s DEBUG: Created policy-rc.d and chmodded it.
0m3.1s DEBUG: Created resolv.conf.
0m3.1s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/null', '/tmp/tmpyj34hmya/dev/null']
0m3.1s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/null', '/tmp/tmpyj34hmya/dev/null']
0m3.1s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/zero', '/tmp/tmpyj34hmya/dev/zero']
0m3.1s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/zero', '/tmp/tmpyj34hmya/dev/zero']
0m3.1s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/full', '/tmp/tmpyj34hmya/dev/full']
0m3.1s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/full', '/tmp/tmpyj34hmya/dev/full']
0m3.1s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/random', '/tmp/tmpyj34hmya/dev/random']
0m3.1s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/random', '/tmp/tmpyj34hmya/dev/random']
0m3.1s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/urandom', '/tmp/tmpyj34hmya/dev/urandom']
0m3.1s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/urandom', '/tmp/tmpyj34hmya/dev/urandom']
0m3.1s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/tty', '/tmp/tmpyj34hmya/dev/tty']
0m3.1s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/tty', '/tmp/tmpyj34hmya/dev/tty']
0m3.1s DEBUG: Copying scriptsdir /tmp/debusine-fetch-exec-upload-jwqrkgo0/scripts to /tmp/tmpyj34hmya/tmp/scripts/
0m3.1s INFO: Running scripts post_chroot_unpack
0m3.1s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', 'update']
0m5.5s DUMP: 
  Get:1 http://deb.debian.org/debian sid InRelease [205 kB]
  Get:2 http://deb.debian.org/debian sid/main i386 Packages [9794 kB]
  Get:3 http://deb.debian.org/debian sid/main Translation-en [7345 kB]
  Fetched 17.3 MB in 2s (10.0 MB/s)
  Reading package lists...
0m5.5s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', 'update']
0m5.5s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', '-yf', 'dist-upgrade']
0m12.8s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  Calculating upgrade...
  The following packages will be upgraded:
    binutils binutils-common binutils-gold binutils-gold-i686-linux-gnu
    binutils-i686-linux-gnu cpp-14 cpp-14-i686-linux-gnu g++-14
    g++-14-i686-linux-gnu gcc-14 gcc-14-base gcc-14-i686-linux-gnu libasan8
    libatomic1 libbinutils libcc1-0 libctf-nobfd0 libctf0 libgcc-14-dev
    libgcc-s1 libgomp1 libgprofng0 libitm1 libquadmath0 libselinux1
    libsemanage-common libsemanage2 libsframe1 libstdc++-14-dev libstdc++6
    libubsan1
  31 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  Need to get 66.2 MB of archives.
  After this operation, 921 kB of additional disk space will be used.
  Get:1 http://deb.debian.org/debian sid/main i386 libcc1-0 i386 14.2.0-15 [44.9 kB]
  Get:2 http://deb.debian.org/debian sid/main i386 libgomp1 i386 14.2.0-15 [138 kB]
  Get:3 http://deb.debian.org/debian sid/main i386 libitm1 i386 14.2.0-15 [27.4 kB]
  Get:4 http://deb.debian.org/debian sid/main i386 libatomic1 i386 14.2.0-15 [7648 B]
  Get:5 http://deb.debian.org/debian sid/main i386 libasan8 i386 14.2.0-15 [2606 kB]
  Get:6 http://deb.debian.org/debian sid/main i386 libubsan1 i386 14.2.0-15 [1055 kB]
  Get:7 http://deb.debian.org/debian sid/main i386 libquadmath0 i386 14.2.0-15 [231 kB]
  Get:8 http://deb.debian.org/debian sid/main i386 gcc-14-base i386 14.2.0-15 [48.8 kB]
  Get:9 http://deb.debian.org/debian sid/main i386 libstdc++6 i386 14.2.0-15 [765 kB]
  Get:10 http://deb.debian.org/debian sid/main i386 gcc-14 i386 14.2.0-15 [537 kB]
  Get:11 http://deb.debian.org/debian sid/main i386 g++-14 i386 14.2.0-15 [21.7 kB]
  Get:12 http://deb.debian.org/debian sid/main i386 g++-14-i686-linux-gnu i386 14.2.0-15 [13.1 MB]
  Get:13 http://deb.debian.org/debian sid/main i386 libstdc++-14-dev i386 14.2.0-15 [2441 kB]
  Get:14 http://deb.debian.org/debian sid/main i386 libgcc-14-dev i386 14.2.0-15 [2582 kB]
  Get:15 http://deb.debian.org/debian sid/main i386 gcc-14-i686-linux-gnu i386 14.2.0-15 [23.3 MB]
  Get:16 http://deb.debian.org/debian sid/main i386 cpp-14-i686-linux-gnu i386 14.2.0-15 [12.0 MB]
  Get:17 http://deb.debian.org/debian sid/main i386 cpp-14 i386 14.2.0-15 [1276 B]
  Get:18 http://deb.debian.org/debian sid/main i386 libgcc-s1 i386 14.2.0-15 [88.2 kB]
  Get:19 http://deb.debian.org/debian sid/main i386 binutils-gold i386 2.43.90.20250127-1 [202 kB]
  Get:20 http://deb.debian.org/debian sid/main i386 libgprofng0 i386 2.43.90.20250127-1 [847 kB]
  Get:21 http://deb.debian.org/debian sid/main i386 libctf0 i386 2.43.90.20250127-1 [94.3 kB]
  Get:22 http://deb.debian.org/debian sid/main i386 libctf-nobfd0 i386 2.43.90.20250127-1 [159 kB]
  Get:23 http://deb.debian.org/debian sid/main i386 binutils-i686-linux-gnu i386 2.43.90.20250127-1 [1076 kB]
  Get:24 http://deb.debian.org/debian sid/main i386 libbinutils i386 2.43.90.20250127-1 [594 kB]
  Get:25 http://deb.debian.org/debian sid/main i386 binutils-common i386 2.43.90.20250127-1 [2533 kB]
  Get:26 http://deb.debian.org/debian sid/main i386 binutils i386 2.43.90.20250127-1 [269 kB]
  Get:27 http://deb.debian.org/debian sid/main i386 binutils-gold-i686-linux-gnu i386 2.43.90.20250127-1 [1287 kB]
  Get:28 http://deb.debian.org/debian sid/main i386 libsframe1 i386 2.43.90.20250127-1 [78.1 kB]
  Get:29 http://deb.debian.org/debian sid/main i386 libselinux1 i386 3.7-3.1 [80.4 kB]
  Get:30 http://deb.debian.org/debian sid/main i386 libsemanage-common all 3.7-2.1 [7208 B]
  Get:31 http://deb.debian.org/debian sid/main i386 libsemanage2 i386 3.7-2.1 [98.7 kB]
  Fetched 66.2 MB in 1s (89.1 MB/s)
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14018 files and directories currently installed.)
  Preparing to unpack .../0-libcc1-0_14.2.0-15_i386.deb ...
  Unpacking libcc1-0:i386 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../1-libgomp1_14.2.0-15_i386.deb ...
  Unpacking libgomp1:i386 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../2-libitm1_14.2.0-15_i386.deb ...
  Unpacking libitm1:i386 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../3-libatomic1_14.2.0-15_i386.deb ...
  Unpacking libatomic1:i386 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../4-libasan8_14.2.0-15_i386.deb ...
  Unpacking libasan8:i386 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../5-libubsan1_14.2.0-15_i386.deb ...
  Unpacking libubsan1:i386 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../6-libquadmath0_14.2.0-15_i386.deb ...
  Unpacking libquadmath0:i386 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../7-gcc-14-base_14.2.0-15_i386.deb ...
  Unpacking gcc-14-base:i386 (14.2.0-15) over (14.2.0-14) ...
  Setting up gcc-14-base:i386 (14.2.0-15) ...
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14018 files and directories currently installed.)
  Preparing to unpack .../libstdc++6_14.2.0-15_i386.deb ...
  Unpacking libstdc++6:i386 (14.2.0-15) over (14.2.0-14) ...
  Setting up libstdc++6:i386 (14.2.0-15) ...
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14018 files and directories currently installed.)
  Preparing to unpack .../0-gcc-14_14.2.0-15_i386.deb ...
  Unpacking gcc-14 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../1-g++-14_14.2.0-15_i386.deb ...
  Unpacking g++-14 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../2-g++-14-i686-linux-gnu_14.2.0-15_i386.deb ...
  Unpacking g++-14-i686-linux-gnu (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../3-libstdc++-14-dev_14.2.0-15_i386.deb ...
  Unpacking libstdc++-14-dev:i386 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../4-libgcc-14-dev_14.2.0-15_i386.deb ...
  Unpacking libgcc-14-dev:i386 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../5-gcc-14-i686-linux-gnu_14.2.0-15_i386.deb ...
  Unpacking gcc-14-i686-linux-gnu (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../6-cpp-14-i686-linux-gnu_14.2.0-15_i386.deb ...
  Unpacking cpp-14-i686-linux-gnu (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../7-cpp-14_14.2.0-15_i386.deb ...
  Unpacking cpp-14 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../8-libgcc-s1_14.2.0-15_i386.deb ...
  Unpacking libgcc-s1:i386 (14.2.0-15) over (14.2.0-14) ...
  Setting up libgcc-s1:i386 (14.2.0-15) ...
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14018 files and directories currently installed.)
  Preparing to unpack .../00-binutils-gold_2.43.90.20250127-1_i386.deb ...
  Unpacking binutils-gold (2.43.90.20250127-1) over (2.43.90.20250121-2) ...
  Preparing to unpack .../01-libgprofng0_2.43.90.20250127-1_i386.deb ...
  Unpacking libgprofng0:i386 (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../02-libctf0_2.43.90.20250127-1_i386.deb ...
  Unpacking libctf0:i386 (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../03-libctf-nobfd0_2.43.90.20250127-1_i386.deb ...
  Unpacking libctf-nobfd0:i386 (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../04-binutils-i686-linux-gnu_2.43.90.20250127-1_i386.deb ...
  Unpacking binutils-i686-linux-gnu (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../05-libbinutils_2.43.90.20250127-1_i386.deb ...
  Unpacking libbinutils:i386 (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../06-binutils-common_2.43.90.20250127-1_i386.deb ...
  Unpacking binutils-common:i386 (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../07-binutils_2.43.90.20250127-1_i386.deb ...
  Unpacking binutils (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../08-binutils-gold-i686-linux-gnu_2.43.90.20250127-1_i386.deb ...
  Unpacking binutils-gold-i686-linux-gnu (2.43.90.20250127-1) over (2.43.90.20250121-2) ...
  Preparing to unpack .../09-libsframe1_2.43.90.20250127-1_i386.deb ...
  Unpacking libsframe1:i386 (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../10-libselinux1_3.7-3.1_i386.deb ...
  Unpacking libselinux1:i386 (3.7-3.1) over (3.7-3+b1) ...
  Setting up libselinux1:i386 (3.7-3.1) ...
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14030 files and directories currently installed.)
  Preparing to unpack .../libsemanage-common_3.7-2.1_all.deb ...
  Unpacking libsemanage-common (3.7-2.1) over (3.7-2) ...
  Setting up libsemanage-common (3.7-2.1) ...
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14030 files and directories currently installed.)
  Preparing to unpack .../libsemanage2_3.7-2.1_i386.deb ...
  Unpacking libsemanage2:i386 (3.7-2.1) over (3.7-2+b1) ...
  Setting up libsemanage2:i386 (3.7-2.1) ...
  Setting up binutils-gold-i686-linux-gnu (2.43.90.20250127-1) ...
  Setting up binutils-common:i386 (2.43.90.20250127-1) ...
  Setting up libctf-nobfd0:i386 (2.43.90.20250127-1) ...
  Setting up libgomp1:i386 (14.2.0-15) ...
  Setting up libsframe1:i386 (2.43.90.20250127-1) ...
  Setting up libquadmath0:i386 (14.2.0-15) ...
  Setting up libatomic1:i386 (14.2.0-15) ...
  Setting up libubsan1:i386 (14.2.0-15) ...
  Setting up libasan8:i386 (14.2.0-15) ...
  Setting up libbinutils:i386 (2.43.90.20250127-1) ...
  Setting up cpp-14-i686-linux-gnu (14.2.0-15) ...
  Setting up libcc1-0:i386 (14.2.0-15) ...
  Setting up libitm1:i386 (14.2.0-15) ...
  Setting up libctf0:i386 (2.43.90.20250127-1) ...
  Setting up binutils-gold (2.43.90.20250127-1) ...
  Setting up binutils-i686-linux-gnu (2.43.90.20250127-1) ...
  Setting up libgprofng0:i386 (2.43.90.20250127-1) ...
  Setting up cpp-14 (14.2.0-15) ...
  Setting up libgcc-14-dev:i386 (14.2.0-15) ...
  Setting up libstdc++-14-dev:i386 (14.2.0-15) ...
  Setting up binutils (2.43.90.20250127-1) ...
  Setting up gcc-14-i686-linux-gnu (14.2.0-15) ...
  Setting up g++-14-i686-linux-gnu (14.2.0-15) ...
  Setting up gcc-14 (14.2.0-15) ...
  Setting up g++-14 (14.2.0-15) ...
  Processing triggers for libc-bin (2.40-6) ...
0m12.8s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', '-yf', 'dist-upgrade']
0m12.8s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'sh', '-c', 'apt-cache dumpavail | md5sum']
0m13.0s DUMP: 
  7372078487ef5fb689dbceb3a1dcd7ad  -
0m13.0s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'sh', '-c', 'apt-cache dumpavail | md5sum']
0m13.0s INFO: Running scripts post_setup
0m13.0s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', 'clean']
0m13.1s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', 'clean']
0m13.1s DEBUG: Recording chroot state
0m13.2s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m13.2s DUMP: 
  install ok installed	adduser	adduser	3.137
  install ok installed	apt	apt	2.9.25
  install ok installed	base-files	base-files	13.6
  install ok installed	base-passwd	base-passwd	3.6.6
  install ok installed	bash	bash	5.2.37-1
  install ok installed	binutils	binutils	2.43.90.20250127-1
  install ok installed	binutils-common:i386	binutils-common	2.43.90.20250127-1
  install ok installed	binutils-gold	binutils-gold	2.43.90.20250127-1
  install ok installed	binutils-gold-i686-linux-gnu	binutils-gold-i686-linux-gnu	2.43.90.20250127-1
  install ok installed	binutils-i686-linux-gnu	binutils-i686-linux-gnu	2.43.90.20250127-1
  install ok installed	bsdutils	bsdutils	1:2.40.4-1
  install ok installed	build-essential	build-essential	12.12
  install ok installed	bzip2	bzip2	1.0.8-6
  install ok installed	coreutils	coreutils	9.5-1
  install ok installed	cpp	cpp	4:14.2.0-1
  install ok installed	cpp-14	cpp-14	14.2.0-15
  install ok installed	cpp-14-i686-linux-gnu	cpp-14-i686-linux-gnu	14.2.0-15
  install ok installed	cpp-i686-linux-gnu	cpp-i686-linux-gnu	4:14.2.0-1
  install ok installed	dash	dash	0.5.12-11
  install ok installed	dbus	dbus	1.16.0-1
  install ok installed	dbus-bin	dbus-bin	1.16.0-1
  install ok installed	dbus-daemon	dbus-daemon	1.16.0-1
  install ok installed	dbus-session-bus-common	dbus-session-bus-common	1.16.0-1
  install ok installed	dbus-system-bus-common	dbus-system-bus-common	1.16.0-1
  install ok installed	debconf	debconf	1.5.89
  install ok installed	debian-archive-keyring	debian-archive-keyring	2023.4
  install ok installed	debianutils	debianutils	5.21
  install ok installed	diffutils	diffutils	1:3.10-2
  install ok installed	dpkg	dpkg	1.22.14
  install ok installed	dpkg-dev	dpkg-dev	1.22.14
  install ok installed	e2fsprogs	e2fsprogs	1.47.2-1
  install ok installed	findutils	findutils	4.10.0-3
  install ok installed	g++	g++	4:14.2.0-1
  install ok installed	g++-14	g++-14	14.2.0-15
  install ok installed	g++-14-i686-linux-gnu	g++-14-i686-linux-gnu	14.2.0-15
  install ok installed	g++-i686-linux-gnu	g++-i686-linux-gnu	4:14.2.0-1
  install ok installed	gcc	gcc	4:14.2.0-1
  install ok installed	gcc-14	gcc-14	14.2.0-15
  install ok installed	gcc-14-base:i386	gcc-14-base	14.2.0-15
  install ok installed	gcc-14-i686-linux-gnu	gcc-14-i686-linux-gnu	14.2.0-15
  install ok installed	gcc-i686-linux-gnu	gcc-i686-linux-gnu	4:14.2.0-1
  install ok installed	grep	grep	3.11-4
  install ok installed	gzip	gzip	1.13-1
  install ok installed	hostname	hostname	3.25
  install ok installed	init-system-helpers	init-system-helpers	1.68
  install ok installed	libacl1:i386	libacl1	2.3.2-2+b1
  install ok installed	libapparmor1:i386	libapparmor1	3.1.7-1+b3
  install ok installed	libapt-pkg6.0t64:i386	libapt-pkg6.0t64	2.9.25
  install ok installed	libasan8:i386	libasan8	14.2.0-15
  install ok installed	libatomic1:i386	libatomic1	14.2.0-15
  install ok installed	libattr1:i386	libattr1	1:2.5.2-2
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:i386	libaudit1	1:4.0.2-2+b1
  install ok installed	libbinutils:i386	libbinutils	2.43.90.20250127-1
  install ok installed	libblkid1:i386	libblkid1	2.40.4-1
  install ok installed	libbsd0:i386	libbsd0	0.12.2-2
  install ok installed	libbz2-1.0:i386	libbz2-1.0	1.0.8-6
  install ok installed	libc-bin	libc-bin	2.40-6
  install ok installed	libc-dev-bin	libc-dev-bin	2.40-6
  install ok installed	libc6:i386	libc6	2.40-6
  install ok installed	libc6-dev:i386	libc6-dev	2.40-6
  install ok installed	libcap-ng0:i386	libcap-ng0	0.8.5-4
  install ok installed	libcap2:i386	libcap2	1:2.66-5+b1
  install ok installed	libcc1-0:i386	libcc1-0	14.2.0-15
  install ok installed	libcom-err2:i386	libcom-err2	1.47.2-1
  install ok installed	libcrypt-dev:i386	libcrypt-dev	1:4.4.38-1
  install ok installed	libcrypt1:i386	libcrypt1	1:4.4.38-1
  install ok installed	libctf-nobfd0:i386	libctf-nobfd0	2.43.90.20250127-1
  install ok installed	libctf0:i386	libctf0	2.43.90.20250127-1
  install ok installed	libdb5.3t64:i386	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdbus-1-3:i386	libdbus-1-3	1.16.0-1
  install ok installed	libdebconfclient0:i386	libdebconfclient0	0.277
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.14
  install ok installed	libexpat1:i386	libexpat1	2.6.4-1
  install ok installed	libext2fs2t64:i386	libext2fs2t64	1.47.2-1
  install ok installed	libgcc-14-dev:i386	libgcc-14-dev	14.2.0-15
  install ok installed	libgcc-s1:i386	libgcc-s1	14.2.0-15
  install ok installed	libgdbm-compat4t64:i386	libgdbm-compat4t64	1.24-2
  install ok installed	libgdbm6t64:i386	libgdbm6t64	1.24-2
  install ok installed	libgmp10:i386	libgmp10	2:6.3.0+dfsg-3
  install ok installed	libgomp1:i386	libgomp1	14.2.0-15
  install ok installed	libgprofng0:i386	libgprofng0	2.43.90.20250127-1
  install ok installed	libhogweed6t64:i386	libhogweed6t64	3.10-1+b1
  install ok installed	libisl23:i386	libisl23	0.27-1
  install ok installed	libitm1:i386	libitm1	14.2.0-15
  install ok installed	libjansson4:i386	libjansson4	2.14-2+b3
  install ok installed	liblz4-1:i386	liblz4-1	1.10.0-3
  install ok installed	liblzma5:i386	liblzma5	5.6.3-1+b1
  install ok installed	libmd0:i386	libmd0	1.1.0-2+b1
  install ok installed	libmount1:i386	libmount1	2.40.4-1
  install ok installed	libmpc3:i386	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:i386	libmpfr6	4.2.1-1+b2
  install ok installed	libnettle8t64:i386	libnettle8t64	3.10-1+b1
  install ok installed	libpam-modules:i386	libpam-modules	1.5.3-7+b1
  install ok installed	libpam-modules-bin	libpam-modules-bin	1.5.3-7+b1
  install ok installed	libpam-runtime	libpam-runtime	1.5.3-7
  install ok installed	libpam0g:i386	libpam0g	1.5.3-7+b1
  install ok installed	libpcre2-8-0:i386	libpcre2-8-0	10.44-5
  install ok installed	libperl5.40:i386	libperl5.40	5.40.0-8
  install ok installed	libquadmath0:i386	libquadmath0	14.2.0-15
  install ok installed	libseccomp2:i386	libseccomp2	2.5.5-2
  install ok installed	libselinux1:i386	libselinux1	3.7-3.1
  install ok installed	libsemanage-common	libsemanage-common	3.7-2.1
  install ok installed	libsemanage2:i386	libsemanage2	3.7-2.1
  install ok installed	libsepol2:i386	libsepol2	3.7-1
  install ok installed	libsframe1:i386	libsframe1	2.43.90.20250127-1
  install ok installed	libsmartcols1:i386	libsmartcols1	2.40.4-1
  install ok installed	libss2:i386	libss2	1.47.2-1
  install ok installed	libssl3t64:i386	libssl3t64	3.4.0-2
  install ok installed	libstdc++-14-dev:i386	libstdc++-14-dev	14.2.0-15
  install ok installed	libstdc++6:i386	libstdc++6	14.2.0-15
  install ok installed	libsystemd-shared:i386	libsystemd-shared	257.2-3
  install ok installed	libsystemd0:i386	libsystemd0	257.2-3
  install ok installed	libtinfo6:i386	libtinfo6	6.5-2+b1
  install ok installed	libubsan1:i386	libubsan1	14.2.0-15
  install ok installed	libudev1:i386	libudev1	257.2-3
  install ok installed	libuuid1:i386	libuuid1	2.40.4-1
  install ok installed	libxxhash0:i386	libxxhash0	0.8.3-2
  install ok installed	libzstd1:i386	libzstd1	1.5.6+dfsg-2
  install ok installed	linux-libc-dev	linux-libc-dev	6.12.11-1
  install ok installed	login	login	1:4.16.0-2+really2.40.4-1
  install ok installed	login.defs	login.defs	1:4.16.0-7
  install ok installed	logsave	logsave	1.47.2-1
  install ok installed	make	make	4.4.1-1
  install ok installed	mawk	mawk	1.3.4.20240905-1
  install ok installed	mount	mount	2.40.4-1
  install ok installed	ncurses-base	ncurses-base	6.5-2
  install ok installed	ncurses-bin	ncurses-bin	6.5-2+b1
  install ok installed	openssl-provider-legacy	openssl-provider-legacy	3.4.0-2
  install ok installed	passwd	passwd	1:4.16.0-7
  install ok installed	patch	patch	2.7.6-7
  install ok installed	perl	perl	5.40.0-8
  install ok installed	perl-base	perl-base	5.40.0-8
  install ok installed	perl-modules-5.40	perl-modules-5.40	5.40.0-8
  install ok installed	rpcsvc-proto	rpcsvc-proto	1.4.3-1
  install ok installed	sed	sed	4.9-2
  install ok installed	sqv	sqv	1.2.1-5
  install ok installed	systemd	systemd	257.2-3
  install ok installed	systemd-resolved	systemd-resolved	257.2-3
  install ok installed	systemd-sysv	systemd-sysv	257.2-3
  install ok installed	sysvinit-utils	sysvinit-utils	3.13-1
  install ok installed	tar	tar	1.35+dfsg-3.1
  install ok installed	tzdata	tzdata	2025a-1
  install ok installed	util-linux	util-linux	2.40.4-1
  install ok installed	xz-utils	xz-utils	5.6.3-1+b1
  install ok installed	zlib1g:i386	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m13.2s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m13.2s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-divert', '--list']
0m13.2s DUMP: 
  diversion of /lib/i386-linux-gnu/libext2fs.so.2 to /lib/i386-linux-gnu/libext2fs.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/i386-linux-gnu/libe2p.so.2 to /lib/i386-linux-gnu/libe2p.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/i386-linux-gnu/libext2fs.so.2.4 to /lib/i386-linux-gnu/libext2fs.so.2.4.usr-is-merged by libext2fs2t64
  diversion of /lib64 to /.lib64.usr-is-merged by base-files
  diversion of /lib/i386-linux-gnu/libe2p.so.2.3 to /lib/i386-linux-gnu/libe2p.so.2.3.usr-is-merged by libext2fs2t64
  diversion of /libx32 to /.libx32.usr-is-merged by base-files
  diversion of /lib/ld-linux.so.2 to /lib/ld-linux.so.2.usr-is-merged by libc6
  diversion of /lib32 to /.lib32.usr-is-merged by base-files
  diversion of /libo32 to /.libo32.usr-is-merged by base-files
0m13.2s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-divert', '--list']
0m13.2s INFO: Running scripts is_testable
0m13.2s INFO: apt-cache does not know about any of the requested packages
0m13.2s INFO: Running scripts pre_test
0m13.2s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m13.7s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m14.1s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m14.1s INFO: Running scripts pre_install
0m14.1s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m14.5s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m15.0s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m15.0s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m15.0s DUMP: 
  2.9.25
0m15.0s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m15.0s DEBUG: Copying /tmp/debusine-fetch-exec-upload-jwqrkgo0/chkrootkit-dbgsym_0.58b-4_i386.deb, /tmp/debusine-fetch-exec-upload-jwqrkgo0/chkrootkit_0.58b-4_i386.deb to /tmp/tmpyj34hmya/tmp
0m15.0s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/chkrootkit-dbgsym_0.58b-4_i386.deb', './tmp/chkrootkit_0.58b-4_i386.deb']
0m16.6s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  Recommended packages:
    default-mta | mail-transport-agent iproute2 | net-tools mailx procps
  The following NEW packages will be installed:
    chkrootkit chkrootkit-dbgsym
  0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
  Need to get 0 B/391 kB of archives.
  After this operation, 1385 kB of additional disk space will be used.
  Get:1 /tmp/chkrootkit_0.58b-4_i386.deb chkrootkit i386 0.58b-4 [324 kB]
  Get:2 /tmp/chkrootkit-dbgsym_0.58b-4_i386.deb chkrootkit-dbgsym i386 0.58b-4 [66.6 kB]
  Selecting previously unselected package chkrootkit.
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14029 files and directories currently installed.)
  Preparing to unpack .../chkrootkit_0.58b-4_i386.deb ...
  Unpacking chkrootkit (0.58b-4) ...
  Selecting previously unselected package chkrootkit-dbgsym.
  Preparing to unpack .../chkrootkit-dbgsym_0.58b-4_i386.deb ...
  Unpacking chkrootkit-dbgsym (0.58b-4) ...
  Setting up chkrootkit (0.58b-4) ...
  Created symlink '/etc/systemd/system/timers.target.wants/chkrootkit.timer' → '/usr/lib/systemd/system/chkrootkit.timer'.
  Setting up chkrootkit-dbgsym (0.58b-4) ...
0m16.6s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/chkrootkit-dbgsym_0.58b-4_i386.deb', './tmp/chkrootkit_0.58b-4_i386.deb']
0m16.6s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'chkrootkit-dbgsym', 'chkrootkit']
0m16.6s DUMP: 
  chkrootkit install ok installed
  chkrootkit-dbgsym install ok installed
0m16.6s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'chkrootkit-dbgsym', 'chkrootkit']
0m16.6s INFO: Installation of ['./tmp/chkrootkit-dbgsym_0.58b-4_i386.deb', './tmp/chkrootkit_0.58b-4_i386.deb'] ok
0m16.6s DEBUG: Removing /tmp/tmpyj34hmya/./tmp/chkrootkit-dbgsym_0.58b-4_i386.deb
0m16.6s DEBUG: Removing /tmp/tmpyj34hmya/./tmp/chkrootkit_0.58b-4_i386.deb
0m16.6s INFO: Running scripts post_install
0m16.6s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m17.0s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m17.5s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m17.7s DEBUG: Starting command: ['debsums', '--root', '/tmp/tmpyj34hmya', '-ac', '--ignore-obsolete']
0m18.8s DEBUG: Command ok: ['debsums', '--root', '/tmp/tmpyj34hmya', '-ac', '--ignore-obsolete']
0m18.8s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m18.8s DUMP: 
  0.17.5
0m18.8s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m18.8s INFO: Running adequate version 0.17.5 now.
0m18.8s DEBUG: Starting command: ['adequate', '--root', '/tmp/tmpyj34hmya', 'chkrootkit-dbgsym', 'chkrootkit']
0m18.8s DEBUG: Command ok: ['adequate', '--root', '/tmp/tmpyj34hmya', 'chkrootkit-dbgsym', 'chkrootkit']
0m18.8s INFO: Running scripts pre_remove
0m18.8s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m18.8s DUMP: 
  install ok installed	adduser	adduser	3.137
  install ok installed	apt	apt	2.9.25
  install ok installed	base-files	base-files	13.6
  install ok installed	base-passwd	base-passwd	3.6.6
  install ok installed	bash	bash	5.2.37-1
  install ok installed	binutils	binutils	2.43.90.20250127-1
  install ok installed	binutils-common:i386	binutils-common	2.43.90.20250127-1
  install ok installed	binutils-gold	binutils-gold	2.43.90.20250127-1
  install ok installed	binutils-gold-i686-linux-gnu	binutils-gold-i686-linux-gnu	2.43.90.20250127-1
  install ok installed	binutils-i686-linux-gnu	binutils-i686-linux-gnu	2.43.90.20250127-1
  install ok installed	bsdutils	bsdutils	1:2.40.4-1
  install ok installed	build-essential	build-essential	12.12
  install ok installed	bzip2	bzip2	1.0.8-6
  install ok installed	chkrootkit	chkrootkit	0.58b-4
  install ok installed	chkrootkit-dbgsym	chkrootkit-dbgsym	0.58b-4
  install ok installed	coreutils	coreutils	9.5-1
  install ok installed	cpp	cpp	4:14.2.0-1
  install ok installed	cpp-14	cpp-14	14.2.0-15
  install ok installed	cpp-14-i686-linux-gnu	cpp-14-i686-linux-gnu	14.2.0-15
  install ok installed	cpp-i686-linux-gnu	cpp-i686-linux-gnu	4:14.2.0-1
  install ok installed	dash	dash	0.5.12-11
  install ok installed	dbus	dbus	1.16.0-1
  install ok installed	dbus-bin	dbus-bin	1.16.0-1
  install ok installed	dbus-daemon	dbus-daemon	1.16.0-1
  install ok installed	dbus-session-bus-common	dbus-session-bus-common	1.16.0-1
  install ok installed	dbus-system-bus-common	dbus-system-bus-common	1.16.0-1
  install ok installed	debconf	debconf	1.5.89
  install ok installed	debian-archive-keyring	debian-archive-keyring	2023.4
  install ok installed	debianutils	debianutils	5.21
  install ok installed	diffutils	diffutils	1:3.10-2
  install ok installed	dpkg	dpkg	1.22.14
  install ok installed	dpkg-dev	dpkg-dev	1.22.14
  install ok installed	e2fsprogs	e2fsprogs	1.47.2-1
  install ok installed	findutils	findutils	4.10.0-3
  install ok installed	g++	g++	4:14.2.0-1
  install ok installed	g++-14	g++-14	14.2.0-15
  install ok installed	g++-14-i686-linux-gnu	g++-14-i686-linux-gnu	14.2.0-15
  install ok installed	g++-i686-linux-gnu	g++-i686-linux-gnu	4:14.2.0-1
  install ok installed	gcc	gcc	4:14.2.0-1
  install ok installed	gcc-14	gcc-14	14.2.0-15
  install ok installed	gcc-14-base:i386	gcc-14-base	14.2.0-15
  install ok installed	gcc-14-i686-linux-gnu	gcc-14-i686-linux-gnu	14.2.0-15
  install ok installed	gcc-i686-linux-gnu	gcc-i686-linux-gnu	4:14.2.0-1
  install ok installed	grep	grep	3.11-4
  install ok installed	gzip	gzip	1.13-1
  install ok installed	hostname	hostname	3.25
  install ok installed	init-system-helpers	init-system-helpers	1.68
  install ok installed	libacl1:i386	libacl1	2.3.2-2+b1
  install ok installed	libapparmor1:i386	libapparmor1	3.1.7-1+b3
  install ok installed	libapt-pkg6.0t64:i386	libapt-pkg6.0t64	2.9.25
  install ok installed	libasan8:i386	libasan8	14.2.0-15
  install ok installed	libatomic1:i386	libatomic1	14.2.0-15
  install ok installed	libattr1:i386	libattr1	1:2.5.2-2
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:i386	libaudit1	1:4.0.2-2+b1
  install ok installed	libbinutils:i386	libbinutils	2.43.90.20250127-1
  install ok installed	libblkid1:i386	libblkid1	2.40.4-1
  install ok installed	libbsd0:i386	libbsd0	0.12.2-2
  install ok installed	libbz2-1.0:i386	libbz2-1.0	1.0.8-6
  install ok installed	libc-bin	libc-bin	2.40-6
  install ok installed	libc-dev-bin	libc-dev-bin	2.40-6
  install ok installed	libc6:i386	libc6	2.40-6
  install ok installed	libc6-dev:i386	libc6-dev	2.40-6
  install ok installed	libcap-ng0:i386	libcap-ng0	0.8.5-4
  install ok installed	libcap2:i386	libcap2	1:2.66-5+b1
  install ok installed	libcc1-0:i386	libcc1-0	14.2.0-15
  install ok installed	libcom-err2:i386	libcom-err2	1.47.2-1
  install ok installed	libcrypt-dev:i386	libcrypt-dev	1:4.4.38-1
  install ok installed	libcrypt1:i386	libcrypt1	1:4.4.38-1
  install ok installed	libctf-nobfd0:i386	libctf-nobfd0	2.43.90.20250127-1
  install ok installed	libctf0:i386	libctf0	2.43.90.20250127-1
  install ok installed	libdb5.3t64:i386	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdbus-1-3:i386	libdbus-1-3	1.16.0-1
  install ok installed	libdebconfclient0:i386	libdebconfclient0	0.277
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.14
  install ok installed	libexpat1:i386	libexpat1	2.6.4-1
  install ok installed	libext2fs2t64:i386	libext2fs2t64	1.47.2-1
  install ok installed	libgcc-14-dev:i386	libgcc-14-dev	14.2.0-15
  install ok installed	libgcc-s1:i386	libgcc-s1	14.2.0-15
  install ok installed	libgdbm-compat4t64:i386	libgdbm-compat4t64	1.24-2
  install ok installed	libgdbm6t64:i386	libgdbm6t64	1.24-2
  install ok installed	libgmp10:i386	libgmp10	2:6.3.0+dfsg-3
  install ok installed	libgomp1:i386	libgomp1	14.2.0-15
  install ok installed	libgprofng0:i386	libgprofng0	2.43.90.20250127-1
  install ok installed	libhogweed6t64:i386	libhogweed6t64	3.10-1+b1
  install ok installed	libisl23:i386	libisl23	0.27-1
  install ok installed	libitm1:i386	libitm1	14.2.0-15
  install ok installed	libjansson4:i386	libjansson4	2.14-2+b3
  install ok installed	liblz4-1:i386	liblz4-1	1.10.0-3
  install ok installed	liblzma5:i386	liblzma5	5.6.3-1+b1
  install ok installed	libmd0:i386	libmd0	1.1.0-2+b1
  install ok installed	libmount1:i386	libmount1	2.40.4-1
  install ok installed	libmpc3:i386	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:i386	libmpfr6	4.2.1-1+b2
  install ok installed	libnettle8t64:i386	libnettle8t64	3.10-1+b1
  install ok installed	libpam-modules:i386	libpam-modules	1.5.3-7+b1
  install ok installed	libpam-modules-bin	libpam-modules-bin	1.5.3-7+b1
  install ok installed	libpam-runtime	libpam-runtime	1.5.3-7
  install ok installed	libpam0g:i386	libpam0g	1.5.3-7+b1
  install ok installed	libpcre2-8-0:i386	libpcre2-8-0	10.44-5
  install ok installed	libperl5.40:i386	libperl5.40	5.40.0-8
  install ok installed	libquadmath0:i386	libquadmath0	14.2.0-15
  install ok installed	libseccomp2:i386	libseccomp2	2.5.5-2
  install ok installed	libselinux1:i386	libselinux1	3.7-3.1
  install ok installed	libsemanage-common	libsemanage-common	3.7-2.1
  install ok installed	libsemanage2:i386	libsemanage2	3.7-2.1
  install ok installed	libsepol2:i386	libsepol2	3.7-1
  install ok installed	libsframe1:i386	libsframe1	2.43.90.20250127-1
  install ok installed	libsmartcols1:i386	libsmartcols1	2.40.4-1
  install ok installed	libss2:i386	libss2	1.47.2-1
  install ok installed	libssl3t64:i386	libssl3t64	3.4.0-2
  install ok installed	libstdc++-14-dev:i386	libstdc++-14-dev	14.2.0-15
  install ok installed	libstdc++6:i386	libstdc++6	14.2.0-15
  install ok installed	libsystemd-shared:i386	libsystemd-shared	257.2-3
  install ok installed	libsystemd0:i386	libsystemd0	257.2-3
  install ok installed	libtinfo6:i386	libtinfo6	6.5-2+b1
  install ok installed	libubsan1:i386	libubsan1	14.2.0-15
  install ok installed	libudev1:i386	libudev1	257.2-3
  install ok installed	libuuid1:i386	libuuid1	2.40.4-1
  install ok installed	libxxhash0:i386	libxxhash0	0.8.3-2
  install ok installed	libzstd1:i386	libzstd1	1.5.6+dfsg-2
  install ok installed	linux-libc-dev	linux-libc-dev	6.12.11-1
  install ok installed	login	login	1:4.16.0-2+really2.40.4-1
  install ok installed	login.defs	login.defs	1:4.16.0-7
  install ok installed	logsave	logsave	1.47.2-1
  install ok installed	make	make	4.4.1-1
  install ok installed	mawk	mawk	1.3.4.20240905-1
  install ok installed	mount	mount	2.40.4-1
  install ok installed	ncurses-base	ncurses-base	6.5-2
  install ok installed	ncurses-bin	ncurses-bin	6.5-2+b1
  install ok installed	openssl-provider-legacy	openssl-provider-legacy	3.4.0-2
  install ok installed	passwd	passwd	1:4.16.0-7
  install ok installed	patch	patch	2.7.6-7
  install ok installed	perl	perl	5.40.0-8
  install ok installed	perl-base	perl-base	5.40.0-8
  install ok installed	perl-modules-5.40	perl-modules-5.40	5.40.0-8
  install ok installed	rpcsvc-proto	rpcsvc-proto	1.4.3-1
  install ok installed	sed	sed	4.9-2
  install ok installed	sqv	sqv	1.2.1-5
  install ok installed	systemd	systemd	257.2-3
  install ok installed	systemd-resolved	systemd-resolved	257.2-3
  install ok installed	systemd-sysv	systemd-sysv	257.2-3
  install ok installed	sysvinit-utils	sysvinit-utils	3.13-1
  install ok installed	tar	tar	1.35+dfsg-3.1
  install ok installed	tzdata	tzdata	2025a-1
  install ok installed	util-linux	util-linux	2.40.4-1
  install ok installed	xz-utils	xz-utils	5.6.3-1+b1
  install ok installed	zlib1g:i386	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m18.8s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m18.8s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', 'remove', 'chkrootkit', 'chkrootkit-dbgsym']
0m19.5s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following packages will be REMOVED:
    chkrootkit chkrootkit-dbgsym
  0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
  After this operation, 1385 kB disk space will be freed.
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14087 files and directories currently installed.)
  Removing chkrootkit-dbgsym (0.58b-4) ...
  Removing chkrootkit (0.58b-4) ...
0m19.5s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', 'remove', 'chkrootkit', 'chkrootkit-dbgsym']
0m19.5s INFO: Running scripts post_remove
0m19.5s INFO: Package chkrootkit contains cron file: /etc/cron.daily/chkrootkit
0m19.5s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', '/etc/cron.daily/chkrootkit']
0m19.5s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', '/etc/cron.daily/chkrootkit']
0m19.5s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg', '--purge', 'chkrootkit', 'chkrootkit-dbgsym']
0m19.6s DUMP: 
  (Reading database ... 14033 files and directories currently installed.)
  Purging configuration files for chkrootkit (0.58b-4) ...
  dpkg: warning: ignoring request to remove chkrootkit-dbgsym which isn't installed
0m19.6s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg', '--purge', 'chkrootkit', 'chkrootkit-dbgsym']
0m19.6s INFO: Running scripts post_purge
0m19.6s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg', '--purge', '--pending']
0m19.7s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg', '--purge', '--pending']
0m19.7s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg', '--remove', '--pending']
0m19.7s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg', '--remove', '--pending']
0m19.7s INFO: Running scripts post_test
0m19.7s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m20.1s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m20.6s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m20.6s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-divert', '--list']
0m20.6s DUMP: 
  diversion of /lib/i386-linux-gnu/libext2fs.so.2 to /lib/i386-linux-gnu/libext2fs.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/i386-linux-gnu/libe2p.so.2 to /lib/i386-linux-gnu/libe2p.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/i386-linux-gnu/libext2fs.so.2.4 to /lib/i386-linux-gnu/libext2fs.so.2.4.usr-is-merged by libext2fs2t64
  diversion of /lib64 to /.lib64.usr-is-merged by base-files
  diversion of /lib/i386-linux-gnu/libe2p.so.2.3 to /lib/i386-linux-gnu/libe2p.so.2.3.usr-is-merged by libext2fs2t64
  diversion of /libx32 to /.libx32.usr-is-merged by base-files
  diversion of /lib/ld-linux.so.2 to /lib/ld-linux.so.2.usr-is-merged by libc6
  diversion of /lib32 to /.lib32.usr-is-merged by base-files
  diversion of /libo32 to /.libo32.usr-is-merged by base-files
0m20.6s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-divert', '--list']
0m20.6s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', 'clean']
0m20.6s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', 'clean']
0m20.6s DEBUG: Recording chroot state
0m20.8s INFO: PASS: Installation and purging test.
0m20.8s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-cache', 'show', '--no-all-versions', 'chkrootkit-dbgsym']
0m21.5s DUMP: 
  E: No packages found
0m21.5s DEBUG: Command failed (status=100), but ignoring error: ['chroot', '/tmp/tmpyj34hmya', 'apt-cache', 'show', '--no-all-versions', 'chkrootkit-dbgsym']
0m21.5s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-cache', 'show', '--no-all-versions', 'chkrootkit']
0m21.6s DUMP: 
  Package: chkrootkit
  Source: chkrootkit (0.58b-3)
  Version: 0.58b-3+b1
  Installed-Size: 939
  Maintainer: Debian Security Tools <team+pkg-security@tracker.debian.org>
  Architecture: i386
  Depends: libc6 (>= 2.34)
  Recommends: binutils, default-mta | mail-transport-agent, iproute2 | net-tools, mailx, procps, systemd-sysv | cron | anacron | cron-daemon
  Enhances: bcron, biff, bind9, bsdextrautils, busybox-syslogd, citadel-server, coreutils, courier-mta, cron, cronie, dma, esmtp-run, exim4-daemon-heavy, exim4-daemon-light, fetchmail, findutils, fingerd, finit-sysv, gpm, grep, hdparm, inetutils-syslogd, inetutils-telnetd, login, lsof, mailutils, masqmail, mingetty, msmtp-mta, net-tools, nullmailer, openbsd-inetd, opensmtpd, openssh-client, openssh-server, passwd, postfix, procps, psmisc, rpcbind, rsh-redone-server, runit-init, rust-findutils, ssmtp, systemd-cron, systemd-sysv, sysvinit-core, sysvinit-utils, tar, tcm, tcpd, tcpdump, traceroute, util-linux, wtmpdb
  Description-en: rootkit detector
   The chkrootkit security scanner searches for signs that the system is
   infected with a 'rootkit'. Rootkits are a form of malware that seek
   to exploit security flaws to grant unauthorised access to a
   computer or its services, generally for malicious purposes.
   .
   chkrootkit can identify signs of over 70 different rootkits (see the
   project's website for a list).
   .
   Please note that an automated tool like chkrootkit can never
   guarantee a system is uncompromised. Nor does every report always
   signify a genuine problem: human judgement and further investigation
   will always be needed to assure the security of your system.
  Description-md5: f02a67f0ef476e80255f1f6b3491753f
  Homepage: https://www.chkrootkit.org/
  Built-Using: glibc (= 2.40-4)
  Tag: implemented-in::c, interface::commandline, role::program,
   scope::utility, security::ids
  Section: misc
  Priority: optional
  Filename: pool/main/c/chkrootkit/chkrootkit_0.58b-3+b1_i386.deb
  Size: 322332
  MD5sum: b868dc0e09119ebd2b1e0276e53ed45d
  SHA256: ea215a7aa563c572c72a602ea7ab2930f79f84bbbfd04245d596dc96338e2255
0m21.6s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-cache', 'show', '--no-all-versions', 'chkrootkit']
0m21.6s INFO: apt-cache knows about the following packages: chkrootkit
0m21.6s INFO: the following packages are not in the archive: chkrootkit-dbgsym
0m21.6s INFO: Running scripts pre_test
0m21.6s INFO: Running scripts pre_install
0m21.6s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-cache', 'policy']
0m21.7s DUMP: 
  Package files:
   100 /var/lib/dpkg/status
       release a=now
   500 http://deb.debian.org/debian sid/main i386 Packages
       release o=Debian,a=unstable,n=sid,l=Debian,c=main,b=i386
       origin deb.debian.org
  Pinned packages:
0m21.7s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-cache', 'policy']
0m21.7s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-cache', 'policy', 'chkrootkit']
0m21.8s DUMP: 
  chkrootkit:
    Installed: (none)
    Candidate: 0.58b-3+b1
    Version table:
       0.58b-3+b1 500
          500 http://deb.debian.org/debian sid/main i386 Packages
0m21.8s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-cache', 'policy', 'chkrootkit']
0m21.8s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', '-y', 'install', 'chkrootkit']
0m22.9s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  Recommended packages:
    default-mta | mail-transport-agent iproute2 | net-tools mailx procps
  The following NEW packages will be installed:
    chkrootkit
  0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  Need to get 322 kB of archives.
  After this operation, 962 kB of additional disk space will be used.
  Get:1 http://deb.debian.org/debian sid/main i386 chkrootkit i386 0.58b-3+b1 [322 kB]
  Fetched 322 kB in 0s (7888 kB/s)
  Selecting previously unselected package chkrootkit.
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14029 files and directories currently installed.)
  Preparing to unpack .../chkrootkit_0.58b-3+b1_i386.deb ...
  Unpacking chkrootkit (0.58b-3+b1) ...
  Setting up chkrootkit (0.58b-3+b1) ...
  Created symlink '/etc/systemd/system/timers.target.wants/chkrootkit.timer' → '/usr/lib/systemd/system/chkrootkit.timer'.
0m22.9s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', '-y', 'install', 'chkrootkit']
0m22.9s INFO: Running scripts post_install
0m22.9s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m23.3s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m23.7s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m23.7s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m23.7s DUMP: 
  2.9.25
0m23.7s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m23.7s DEBUG: Copying /tmp/debusine-fetch-exec-upload-jwqrkgo0/chkrootkit-dbgsym_0.58b-4_i386.deb, /tmp/debusine-fetch-exec-upload-jwqrkgo0/chkrootkit_0.58b-4_i386.deb to /tmp/tmpyj34hmya/tmp
0m23.7s INFO: Running scripts pre_install
0m23.7s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/chkrootkit-dbgsym_0.58b-4_i386.deb', './tmp/chkrootkit_0.58b-4_i386.deb']
0m24.8s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following NEW packages will be installed:
    chkrootkit-dbgsym
  The following packages will be upgraded:
    chkrootkit
  1 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  Need to get 0 B/391 kB of archives.
  After this operation, 424 kB of additional disk space will be used.
  Get:1 /tmp/chkrootkit_0.58b-4_i386.deb chkrootkit i386 0.58b-4 [324 kB]
  Get:2 /tmp/chkrootkit-dbgsym_0.58b-4_i386.deb chkrootkit-dbgsym i386 0.58b-4 [66.6 kB]
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14066 files and directories currently installed.)
  Preparing to unpack .../chkrootkit_0.58b-4_i386.deb ...
  Unpacking chkrootkit (0.58b-4) over (0.58b-3+b1) ...
  Selecting previously unselected package chkrootkit-dbgsym.
  Preparing to unpack .../chkrootkit-dbgsym_0.58b-4_i386.deb ...
  Unpacking chkrootkit-dbgsym (0.58b-4) ...
  Setting up chkrootkit (0.58b-4) ...
  Setting up chkrootkit-dbgsym (0.58b-4) ...
0m24.8s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/chkrootkit-dbgsym_0.58b-4_i386.deb', './tmp/chkrootkit_0.58b-4_i386.deb']
0m24.8s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'chkrootkit-dbgsym', 'chkrootkit']
0m24.8s DUMP: 
  chkrootkit install ok installed
  chkrootkit-dbgsym install ok installed
0m24.8s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'chkrootkit-dbgsym', 'chkrootkit']
0m24.8s INFO: Installation of ['./tmp/chkrootkit-dbgsym_0.58b-4_i386.deb', './tmp/chkrootkit_0.58b-4_i386.deb'] ok
0m24.8s INFO: Running scripts post_install
0m24.8s DEBUG: Removing /tmp/tmpyj34hmya/./tmp/chkrootkit-dbgsym_0.58b-4_i386.deb
0m24.8s DEBUG: Removing /tmp/tmpyj34hmya/./tmp/chkrootkit_0.58b-4_i386.deb
0m24.9s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m25.3s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m25.7s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m26.0s DEBUG: Starting command: ['debsums', '--root', '/tmp/tmpyj34hmya', '-ac', '--ignore-obsolete']
0m27.0s DEBUG: Command ok: ['debsums', '--root', '/tmp/tmpyj34hmya', '-ac', '--ignore-obsolete']
0m27.0s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m27.0s DUMP: 
  0.17.5
0m27.0s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m27.0s INFO: Running adequate version 0.17.5 now.
0m27.0s DEBUG: Starting command: ['adequate', '--root', '/tmp/tmpyj34hmya', 'chkrootkit-dbgsym', 'chkrootkit']
0m27.1s DEBUG: Command ok: ['adequate', '--root', '/tmp/tmpyj34hmya', 'chkrootkit-dbgsym', 'chkrootkit']
0m27.1s INFO: Running scripts pre_remove
0m27.1s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m27.1s DUMP: 
  install ok installed	adduser	adduser	3.137
  install ok installed	apt	apt	2.9.25
  install ok installed	base-files	base-files	13.6
  install ok installed	base-passwd	base-passwd	3.6.6
  install ok installed	bash	bash	5.2.37-1
  install ok installed	binutils	binutils	2.43.90.20250127-1
  install ok installed	binutils-common:i386	binutils-common	2.43.90.20250127-1
  install ok installed	binutils-gold	binutils-gold	2.43.90.20250127-1
  install ok installed	binutils-gold-i686-linux-gnu	binutils-gold-i686-linux-gnu	2.43.90.20250127-1
  install ok installed	binutils-i686-linux-gnu	binutils-i686-linux-gnu	2.43.90.20250127-1
  install ok installed	bsdutils	bsdutils	1:2.40.4-1
  install ok installed	build-essential	build-essential	12.12
  install ok installed	bzip2	bzip2	1.0.8-6
  install ok installed	chkrootkit	chkrootkit	0.58b-4
  install ok installed	chkrootkit-dbgsym	chkrootkit-dbgsym	0.58b-4
  install ok installed	coreutils	coreutils	9.5-1
  install ok installed	cpp	cpp	4:14.2.0-1
  install ok installed	cpp-14	cpp-14	14.2.0-15
  install ok installed	cpp-14-i686-linux-gnu	cpp-14-i686-linux-gnu	14.2.0-15
  install ok installed	cpp-i686-linux-gnu	cpp-i686-linux-gnu	4:14.2.0-1
  install ok installed	dash	dash	0.5.12-11
  install ok installed	dbus	dbus	1.16.0-1
  install ok installed	dbus-bin	dbus-bin	1.16.0-1
  install ok installed	dbus-daemon	dbus-daemon	1.16.0-1
  install ok installed	dbus-session-bus-common	dbus-session-bus-common	1.16.0-1
  install ok installed	dbus-system-bus-common	dbus-system-bus-common	1.16.0-1
  install ok installed	debconf	debconf	1.5.89
  install ok installed	debian-archive-keyring	debian-archive-keyring	2023.4
  install ok installed	debianutils	debianutils	5.21
  install ok installed	diffutils	diffutils	1:3.10-2
  install ok installed	dpkg	dpkg	1.22.14
  install ok installed	dpkg-dev	dpkg-dev	1.22.14
  install ok installed	e2fsprogs	e2fsprogs	1.47.2-1
  install ok installed	findutils	findutils	4.10.0-3
  install ok installed	g++	g++	4:14.2.0-1
  install ok installed	g++-14	g++-14	14.2.0-15
  install ok installed	g++-14-i686-linux-gnu	g++-14-i686-linux-gnu	14.2.0-15
  install ok installed	g++-i686-linux-gnu	g++-i686-linux-gnu	4:14.2.0-1
  install ok installed	gcc	gcc	4:14.2.0-1
  install ok installed	gcc-14	gcc-14	14.2.0-15
  install ok installed	gcc-14-base:i386	gcc-14-base	14.2.0-15
  install ok installed	gcc-14-i686-linux-gnu	gcc-14-i686-linux-gnu	14.2.0-15
  install ok installed	gcc-i686-linux-gnu	gcc-i686-linux-gnu	4:14.2.0-1
  install ok installed	grep	grep	3.11-4
  install ok installed	gzip	gzip	1.13-1
  install ok installed	hostname	hostname	3.25
  install ok installed	init-system-helpers	init-system-helpers	1.68
  install ok installed	libacl1:i386	libacl1	2.3.2-2+b1
  install ok installed	libapparmor1:i386	libapparmor1	3.1.7-1+b3
  install ok installed	libapt-pkg6.0t64:i386	libapt-pkg6.0t64	2.9.25
  install ok installed	libasan8:i386	libasan8	14.2.0-15
  install ok installed	libatomic1:i386	libatomic1	14.2.0-15
  install ok installed	libattr1:i386	libattr1	1:2.5.2-2
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:i386	libaudit1	1:4.0.2-2+b1
  install ok installed	libbinutils:i386	libbinutils	2.43.90.20250127-1
  install ok installed	libblkid1:i386	libblkid1	2.40.4-1
  install ok installed	libbsd0:i386	libbsd0	0.12.2-2
  install ok installed	libbz2-1.0:i386	libbz2-1.0	1.0.8-6
  install ok installed	libc-bin	libc-bin	2.40-6
  install ok installed	libc-dev-bin	libc-dev-bin	2.40-6
  install ok installed	libc6:i386	libc6	2.40-6
  install ok installed	libc6-dev:i386	libc6-dev	2.40-6
  install ok installed	libcap-ng0:i386	libcap-ng0	0.8.5-4
  install ok installed	libcap2:i386	libcap2	1:2.66-5+b1
  install ok installed	libcc1-0:i386	libcc1-0	14.2.0-15
  install ok installed	libcom-err2:i386	libcom-err2	1.47.2-1
  install ok installed	libcrypt-dev:i386	libcrypt-dev	1:4.4.38-1
  install ok installed	libcrypt1:i386	libcrypt1	1:4.4.38-1
  install ok installed	libctf-nobfd0:i386	libctf-nobfd0	2.43.90.20250127-1
  install ok installed	libctf0:i386	libctf0	2.43.90.20250127-1
  install ok installed	libdb5.3t64:i386	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdbus-1-3:i386	libdbus-1-3	1.16.0-1
  install ok installed	libdebconfclient0:i386	libdebconfclient0	0.277
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.14
  install ok installed	libexpat1:i386	libexpat1	2.6.4-1
  install ok installed	libext2fs2t64:i386	libext2fs2t64	1.47.2-1
  install ok installed	libgcc-14-dev:i386	libgcc-14-dev	14.2.0-15
  install ok installed	libgcc-s1:i386	libgcc-s1	14.2.0-15
  install ok installed	libgdbm-compat4t64:i386	libgdbm-compat4t64	1.24-2
  install ok installed	libgdbm6t64:i386	libgdbm6t64	1.24-2
  install ok installed	libgmp10:i386	libgmp10	2:6.3.0+dfsg-3
  install ok installed	libgomp1:i386	libgomp1	14.2.0-15
  install ok installed	libgprofng0:i386	libgprofng0	2.43.90.20250127-1
  install ok installed	libhogweed6t64:i386	libhogweed6t64	3.10-1+b1
  install ok installed	libisl23:i386	libisl23	0.27-1
  install ok installed	libitm1:i386	libitm1	14.2.0-15
  install ok installed	libjansson4:i386	libjansson4	2.14-2+b3
  install ok installed	liblz4-1:i386	liblz4-1	1.10.0-3
  install ok installed	liblzma5:i386	liblzma5	5.6.3-1+b1
  install ok installed	libmd0:i386	libmd0	1.1.0-2+b1
  install ok installed	libmount1:i386	libmount1	2.40.4-1
  install ok installed	libmpc3:i386	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:i386	libmpfr6	4.2.1-1+b2
  install ok installed	libnettle8t64:i386	libnettle8t64	3.10-1+b1
  install ok installed	libpam-modules:i386	libpam-modules	1.5.3-7+b1
  install ok installed	libpam-modules-bin	libpam-modules-bin	1.5.3-7+b1
  install ok installed	libpam-runtime	libpam-runtime	1.5.3-7
  install ok installed	libpam0g:i386	libpam0g	1.5.3-7+b1
  install ok installed	libpcre2-8-0:i386	libpcre2-8-0	10.44-5
  install ok installed	libperl5.40:i386	libperl5.40	5.40.0-8
  install ok installed	libquadmath0:i386	libquadmath0	14.2.0-15
  install ok installed	libseccomp2:i386	libseccomp2	2.5.5-2
  install ok installed	libselinux1:i386	libselinux1	3.7-3.1
  install ok installed	libsemanage-common	libsemanage-common	3.7-2.1
  install ok installed	libsemanage2:i386	libsemanage2	3.7-2.1
  install ok installed	libsepol2:i386	libsepol2	3.7-1
  install ok installed	libsframe1:i386	libsframe1	2.43.90.20250127-1
  install ok installed	libsmartcols1:i386	libsmartcols1	2.40.4-1
  install ok installed	libss2:i386	libss2	1.47.2-1
  install ok installed	libssl3t64:i386	libssl3t64	3.4.0-2
  install ok installed	libstdc++-14-dev:i386	libstdc++-14-dev	14.2.0-15
  install ok installed	libstdc++6:i386	libstdc++6	14.2.0-15
  install ok installed	libsystemd-shared:i386	libsystemd-shared	257.2-3
  install ok installed	libsystemd0:i386	libsystemd0	257.2-3
  install ok installed	libtinfo6:i386	libtinfo6	6.5-2+b1
  install ok installed	libubsan1:i386	libubsan1	14.2.0-15
  install ok installed	libudev1:i386	libudev1	257.2-3
  install ok installed	libuuid1:i386	libuuid1	2.40.4-1
  install ok installed	libxxhash0:i386	libxxhash0	0.8.3-2
  install ok installed	libzstd1:i386	libzstd1	1.5.6+dfsg-2
  install ok installed	linux-libc-dev	linux-libc-dev	6.12.11-1
  install ok installed	login	login	1:4.16.0-2+really2.40.4-1
  install ok installed	login.defs	login.defs	1:4.16.0-7
  install ok installed	logsave	logsave	1.47.2-1
  install ok installed	make	make	4.4.1-1
  install ok installed	mawk	mawk	1.3.4.20240905-1
  install ok installed	mount	mount	2.40.4-1
  install ok installed	ncurses-base	ncurses-base	6.5-2
  install ok installed	ncurses-bin	ncurses-bin	6.5-2+b1
  install ok installed	openssl-provider-legacy	openssl-provider-legacy	3.4.0-2
  install ok installed	passwd	passwd	1:4.16.0-7
  install ok installed	patch	patch	2.7.6-7
  install ok installed	perl	perl	5.40.0-8
  install ok installed	perl-base	perl-base	5.40.0-8
  install ok installed	perl-modules-5.40	perl-modules-5.40	5.40.0-8
  install ok installed	rpcsvc-proto	rpcsvc-proto	1.4.3-1
  install ok installed	sed	sed	4.9-2
  install ok installed	sqv	sqv	1.2.1-5
  install ok installed	systemd	systemd	257.2-3
  install ok installed	systemd-resolved	systemd-resolved	257.2-3
  install ok installed	systemd-sysv	systemd-sysv	257.2-3
  install ok installed	sysvinit-utils	sysvinit-utils	3.13-1
  install ok installed	tar	tar	1.35+dfsg-3.1
  install ok installed	tzdata	tzdata	2025a-1
  install ok installed	util-linux	util-linux	2.40.4-1
  install ok installed	xz-utils	xz-utils	5.6.3-1+b1
  install ok installed	zlib1g:i386	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m27.1s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m27.1s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', 'remove', 'chkrootkit', 'chkrootkit-dbgsym']
0m27.8s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following packages will be REMOVED:
    chkrootkit chkrootkit-dbgsym
  0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
  After this operation, 1385 kB disk space will be freed.
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14087 files and directories currently installed.)
  Removing chkrootkit-dbgsym (0.58b-4) ...
  Removing chkrootkit (0.58b-4) ...
0m27.8s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', 'remove', 'chkrootkit', 'chkrootkit-dbgsym']
0m27.8s INFO: Running scripts post_remove
0m27.8s INFO: Package chkrootkit contains cron file: /etc/cron.daily/chkrootkit
0m27.8s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', '/etc/cron.daily/chkrootkit']
0m27.8s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', '/etc/cron.daily/chkrootkit']
0m27.8s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg', '--purge', 'chkrootkit', 'chkrootkit-dbgsym']
0m27.9s DUMP: 
  (Reading database ... 14033 files and directories currently installed.)
  Purging configuration files for chkrootkit (0.58b-4) ...
  dpkg: warning: ignoring request to remove chkrootkit-dbgsym which isn't installed
0m27.9s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg', '--purge', 'chkrootkit', 'chkrootkit-dbgsym']
0m27.9s INFO: Running scripts post_purge
0m27.9s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg', '--purge', '--pending']
0m27.9s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg', '--purge', '--pending']
0m27.9s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg', '--remove', '--pending']
0m27.9s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg', '--remove', '--pending']
0m27.9s INFO: Running scripts post_test
0m27.9s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m28.3s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpyj34hmya']
0m28.7s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m28.7s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-divert', '--list']
0m28.8s DUMP: 
  diversion of /lib/i386-linux-gnu/libext2fs.so.2 to /lib/i386-linux-gnu/libext2fs.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/i386-linux-gnu/libe2p.so.2 to /lib/i386-linux-gnu/libe2p.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/i386-linux-gnu/libext2fs.so.2.4 to /lib/i386-linux-gnu/libext2fs.so.2.4.usr-is-merged by libext2fs2t64
  diversion of /lib64 to /.lib64.usr-is-merged by base-files
  diversion of /lib/i386-linux-gnu/libe2p.so.2.3 to /lib/i386-linux-gnu/libe2p.so.2.3.usr-is-merged by libext2fs2t64
  diversion of /libx32 to /.libx32.usr-is-merged by base-files
  diversion of /lib/ld-linux.so.2 to /lib/ld-linux.so.2.usr-is-merged by libc6
  diversion of /lib32 to /.lib32.usr-is-merged by base-files
  diversion of /libo32 to /.libo32.usr-is-merged by base-files
0m28.8s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'dpkg-divert', '--list']
0m28.8s DEBUG: Starting command: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', 'clean']
0m28.8s DEBUG: Command ok: ['chroot', '/tmp/tmpyj34hmya', 'apt-get', 'clean']
0m28.8s DEBUG: Recording chroot state
0m29.0s INFO: PASS: Installation, upgrade and purging tests.
0m29.5s DEBUG: Starting command: ['umount', '/tmp/tmpyj34hmya/dev/tty']
0m29.5s DEBUG: Command ok: ['umount', '/tmp/tmpyj34hmya/dev/tty']
0m29.5s DEBUG: Starting command: ['umount', '/tmp/tmpyj34hmya/dev/urandom']
0m29.5s DEBUG: Command ok: ['umount', '/tmp/tmpyj34hmya/dev/urandom']
0m29.5s DEBUG: Starting command: ['umount', '/tmp/tmpyj34hmya/dev/random']
0m29.5s DEBUG: Command ok: ['umount', '/tmp/tmpyj34hmya/dev/random']
0m29.5s DEBUG: Starting command: ['umount', '/tmp/tmpyj34hmya/dev/full']
0m29.5s DEBUG: Command ok: ['umount', '/tmp/tmpyj34hmya/dev/full']
0m29.5s DEBUG: Starting command: ['umount', '/tmp/tmpyj34hmya/dev/zero']
0m29.5s DEBUG: Command ok: ['umount', '/tmp/tmpyj34hmya/dev/zero']
0m29.5s DEBUG: Starting command: ['umount', '/tmp/tmpyj34hmya/dev/null']
0m29.5s DEBUG: Command ok: ['umount', '/tmp/tmpyj34hmya/dev/null']
0m29.5s DEBUG: Starting command: ['umount', '/tmp/tmpyj34hmya/dev/shm']
0m29.5s DEBUG: Command ok: ['umount', '/tmp/tmpyj34hmya/dev/shm']
0m29.5s DEBUG: Starting command: ['umount', '/tmp/tmpyj34hmya/dev/pts']
0m29.5s DEBUG: Command ok: ['umount', '/tmp/tmpyj34hmya/dev/pts']
0m29.5s DEBUG: Starting command: ['umount', '/tmp/tmpyj34hmya/proc']
0m29.5s DEBUG: Command ok: ['umount', '/tmp/tmpyj34hmya/proc']
0m29.5s DEBUG: Starting command: ['rm', '-rf', '--one-file-system', '/tmp/tmpyj34hmya']
0m29.8s DEBUG: Command ok: ['rm', '-rf', '--one-file-system', '/tmp/tmpyj34hmya']
0m29.8s DEBUG: Removed directory tree at /tmp/tmpyj34hmya
0m29.8s INFO: PASS: All tests.
0m29.8s INFO: piuparts run ends.

Files in working directory:

--------------------
debug log System piuparts - 2 days, 17 hours ago 0 minutes
BETA