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
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-m1bllaah/base_tar/system.tar.gz --scriptsdir=/tmp/debusine-fetch-exec-upload-m1bllaah/scripts /tmp/debusine-fetch-exec-upload-m1bllaah/chkrootkit-dbgsym_0.58b-4_armhf.deb /tmp/debusine-fetch-exec-upload-m1bllaah/chkrootkit_0.58b-4_armhf.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-m1bllaah/base_tar/system.tar.gz --scriptsdir=/tmp/debusine-fetch-exec-upload-m1bllaah/scripts /tmp/debusine-fetch-exec-upload-m1bllaah/chkrootkit-dbgsym_0.58b-4_armhf.deb /tmp/debusine-fetch-exec-upload-m1bllaah/chkrootkit_0.58b-4_armhf.deb
0m0.0s INFO: Running on: Linux debusine-worker-arm64-demeter-01 6.1.0-29-cloud-arm64 #1 SMP Debian 6.1.123-1 (2025-01-02) aarch64
0m0.0s DEBUG: Starting command: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-m1bllaah/chkrootkit-dbgsym_0.58b-4_armhf.deb']
0m0.0s DUMP: 
   new Debian package, version 2.0.
   size 72484 bytes: control archive=948 bytes.
       657 bytes,    12 lines      control
       938 bytes,     9 lines      md5sums
   Package: chkrootkit-dbgsym
   Source: chkrootkit
   Version: 0.58b-4
   Auto-Built-Package: debug-symbols
   Architecture: armhf
   Maintainer: Debian Security Tools <team+pkg-security@tracker.debian.org>
   Installed-Size: 559
   Depends: chkrootkit (= 0.58b-4)
   Section: debug
   Priority: optional
   Description: debug symbols for chkrootkit
   Build-Ids: 0070ee728468bbe0baf053355af651ee493cefb8 396a0a524bb1b534be0caff8cb6b390c625a0501 52c2ac937f1a56e7237946c68e6daa72b4856732 606aee3dd5f0e04e2941f9fd313700e4d44defef 9a8bee14db41428578b938e3e6f3e02f7e4ab75f a478805631be8a5fab0bfa1addd32407943e4279 ad827efa464084f5bb8c0f6926a957d4e7c19b90 f83206015f15f4342d0006e6bb394a194fce3a98
0m0.0s DEBUG: Command ok: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-m1bllaah/chkrootkit-dbgsym_0.58b-4_armhf.deb']
0m0.0s DEBUG: Starting command: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-m1bllaah/chkrootkit_0.58b-4_armhf.deb']
0m0.0s DUMP: 
   new Debian package, version 2.0.
   size 239624 bytes: control archive=3312 bytes.
        93 bytes,     3 lines      conffiles
      1696 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: armhf
   Maintainer: Debian Security Tools <team+pkg-security@tracker.debian.org>
   Installed-Size: 1014
   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-m1bllaah/chkrootkit_0.58b-4_armhf.deb']
0m0.0s DEBUG: Created temporary directory /tmp/tmp961d4uyl
0m0.0s DEBUG: Unpacking /tmp/debusine-fetch-exec-upload-m1bllaah/base_tar/system.tar.gz into /tmp/tmp961d4uyl
0m0.0s DEBUG: Starting command: ['tar', '-C', '/tmp/tmp961d4uyl', '--auto-compress', '-xf', '/tmp/debusine-fetch-exec-upload-m1bllaah/base_tar/system.tar.gz']
0m2.7s DUMP: 
  tar: Ignoring unknown extended header keyword 'hdrcharset'
0m2.7s DEBUG: Command ok: ['tar', '-C', '/tmp/tmp961d4uyl', '--auto-compress', '-xf', '/tmp/debusine-fetch-exec-upload-m1bllaah/base_tar/system.tar.gz']
0m2.7s DEBUG: Starting command: ['mount', '-t', 'proc', 'proc', '/tmp/tmp961d4uyl/proc']
0m2.7s DEBUG: Command ok: ['mount', '-t', 'proc', 'proc', '/tmp/tmp961d4uyl/proc']
0m2.7s DEBUG: Starting command: ['mount', '-t', 'devpts', '-o', 'newinstance,noexec,nosuid,gid=5,mode=0620,ptmxmode=0666', 'devpts', '/tmp/tmp961d4uyl/dev/pts']
0m2.7s DEBUG: Command ok: ['mount', '-t', 'devpts', '-o', 'newinstance,noexec,nosuid,gid=5,mode=0620,ptmxmode=0666', 'devpts', '/tmp/tmp961d4uyl/dev/pts']
0m2.8s DEBUG: Starting command: ['mount', '-t', 'tmpfs', '-o', 'size=65536k', 'tmpfs', '/tmp/tmp961d4uyl/dev/shm']
0m2.8s DEBUG: Command ok: ['mount', '-t', 'tmpfs', '-o', 'size=65536k', 'tmpfs', '/tmp/tmp961d4uyl/dev/shm']
0m2.8s DEBUG: Created policy-rc.d and chmodded it.
0m2.8s DEBUG: Created resolv.conf.
0m2.8s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/null', '/tmp/tmp961d4uyl/dev/null']
0m2.8s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/null', '/tmp/tmp961d4uyl/dev/null']
0m2.8s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/zero', '/tmp/tmp961d4uyl/dev/zero']
0m2.8s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/zero', '/tmp/tmp961d4uyl/dev/zero']
0m2.8s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/full', '/tmp/tmp961d4uyl/dev/full']
0m2.8s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/full', '/tmp/tmp961d4uyl/dev/full']
0m2.8s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/random', '/tmp/tmp961d4uyl/dev/random']
0m2.8s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/random', '/tmp/tmp961d4uyl/dev/random']
0m2.8s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/urandom', '/tmp/tmp961d4uyl/dev/urandom']
0m2.8s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/urandom', '/tmp/tmp961d4uyl/dev/urandom']
0m2.8s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/tty', '/tmp/tmp961d4uyl/dev/tty']
0m2.8s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/tty', '/tmp/tmp961d4uyl/dev/tty']
0m2.8s DEBUG: Copying scriptsdir /tmp/debusine-fetch-exec-upload-m1bllaah/scripts to /tmp/tmp961d4uyl/tmp/scripts/
0m2.8s INFO: Running scripts post_chroot_unpack
0m2.8s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', 'update']
0m6.6s DUMP: 
  Get:1 http://deb.debian.org/debian sid InRelease [205 kB]
  Get:2 http://deb.debian.org/debian sid/main armhf Packages [9556 kB]
  Get:3 http://deb.debian.org/debian sid/main Translation-en [7345 kB]
  Fetched 17.1 MB in 3s (6188 kB/s)
  Reading package lists...
0m6.6s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', 'update']
0m6.6s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', '-yf', 'dist-upgrade']
0m14.9s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  Calculating upgrade...
  The following packages will be upgraded:
    binutils binutils-arm-linux-gnueabihf binutils-common binutils-gold
    binutils-gold-arm-linux-gnueabihf cpp-14 cpp-14-arm-linux-gnueabihf g++-14
    g++-14-arm-linux-gnueabihf gcc-14 gcc-14-arm-linux-gnueabihf gcc-14-base
    libasan8 libatomic1 libbinutils libcc1-0 libctf-nobfd0 libctf0 libgcc-14-dev
    libgcc-s1 libgomp1 libselinux1 libsemanage-common libsemanage2 libsframe1
    libstdc++-14-dev libstdc++6 libubsan1
  28 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  Need to get 47.2 MB of archives.
  After this operation, 935 kB of additional disk space will be used.
  Get:1 http://deb.debian.org/debian sid/main armhf libubsan1 armhf 14.2.0-15 [1040 kB]
  Get:2 http://deb.debian.org/debian sid/main armhf gcc-14-base armhf 14.2.0-15 [48.8 kB]
  Get:3 http://deb.debian.org/debian sid/main armhf libstdc++6 armhf 14.2.0-15 [607 kB]
  Get:4 http://deb.debian.org/debian sid/main armhf libgomp1 armhf 14.2.0-15 [111 kB]
  Get:5 http://deb.debian.org/debian sid/main armhf libatomic1 armhf 14.2.0-15 [7200 B]
  Get:6 http://deb.debian.org/debian sid/main armhf libasan8 armhf 14.2.0-15 [2580 kB]
  Get:7 http://deb.debian.org/debian sid/main armhf g++-14-arm-linux-gnueabihf armhf 14.2.0-15 [9063 kB]
  Get:8 http://deb.debian.org/debian sid/main armhf g++-14 armhf 14.2.0-15 [21.7 kB]
  Get:9 http://deb.debian.org/debian sid/main armhf gcc-14 armhf 14.2.0-15 [506 kB]
  Get:10 http://deb.debian.org/debian sid/main armhf cpp-14 armhf 14.2.0-15 [1280 B]
  Get:11 http://deb.debian.org/debian sid/main armhf cpp-14-arm-linux-gnueabihf armhf 14.2.0-15 [8239 kB]
  Get:12 http://deb.debian.org/debian sid/main armhf libcc1-0 armhf 14.2.0-15 [36.5 kB]
  Get:13 http://deb.debian.org/debian sid/main armhf gcc-14-arm-linux-gnueabihf armhf 14.2.0-15 [15.8 MB]
  Get:14 http://deb.debian.org/debian sid/main armhf libgcc-14-dev armhf 14.2.0-15 [768 kB]
  Get:15 http://deb.debian.org/debian sid/main armhf libstdc++-14-dev armhf 14.2.0-15 [2378 kB]
  Get:16 http://deb.debian.org/debian sid/main armhf libgcc-s1 armhf 14.2.0-15 [36.9 kB]
  Get:17 http://deb.debian.org/debian sid/main armhf libctf0 armhf 2.43.90.20250127-1 [61.4 kB]
  Get:18 http://deb.debian.org/debian sid/main armhf libctf-nobfd0 armhf 2.43.90.20250127-1 [128 kB]
  Get:19 http://deb.debian.org/debian sid/main armhf binutils-gold armhf 2.43.90.20250127-1 [202 kB]
  Get:20 http://deb.debian.org/debian sid/main armhf binutils-gold-arm-linux-gnueabihf armhf 2.43.90.20250127-1 [1616 kB]
  Get:21 http://deb.debian.org/debian sid/main armhf libsframe1 armhf 2.43.90.20250127-1 [75.5 kB]
  Get:22 http://deb.debian.org/debian sid/main armhf libbinutils armhf 2.43.90.20250127-1 [341 kB]
  Get:23 http://deb.debian.org/debian sid/main armhf binutils-common armhf 2.43.90.20250127-1 [2533 kB]
  Get:24 http://deb.debian.org/debian sid/main armhf binutils armhf 2.43.90.20250127-1 [68.7 kB]
  Get:25 http://deb.debian.org/debian sid/main armhf binutils-arm-linux-gnueabihf armhf 2.43.90.20250127-1 [838 kB]
  Get:26 http://deb.debian.org/debian sid/main armhf libselinux1 armhf 3.7-3.1 [67.2 kB]
  Get:27 http://deb.debian.org/debian sid/main armhf libsemanage-common all 3.7-2.1 [7208 B]
  Get:28 http://deb.debian.org/debian sid/main armhf libsemanage2 armhf 3.7-2.1 [78.8 kB]
  Fetched 47.2 MB in 1s (44.7 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 ... 13774 files and directories currently installed.)
  Preparing to unpack .../libubsan1_14.2.0-15_armhf.deb ...
  Unpacking libubsan1:armhf (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../gcc-14-base_14.2.0-15_armhf.deb ...
  Unpacking gcc-14-base:armhf (14.2.0-15) over (14.2.0-14) ...
  Setting up gcc-14-base:armhf (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 ... 13774 files and directories currently installed.)
  Preparing to unpack .../libstdc++6_14.2.0-15_armhf.deb ...
  Unpacking libstdc++6:armhf (14.2.0-15) over (14.2.0-14) ...
  Setting up libstdc++6:armhf (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 ... 13774 files and directories currently installed.)
  Preparing to unpack .../00-libgomp1_14.2.0-15_armhf.deb ...
  Unpacking libgomp1:armhf (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../01-libatomic1_14.2.0-15_armhf.deb ...
  Unpacking libatomic1:armhf (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../02-libasan8_14.2.0-15_armhf.deb ...
  Unpacking libasan8:armhf (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../03-g++-14-arm-linux-gnueabihf_14.2.0-15_armhf.deb ...
  Unpacking g++-14-arm-linux-gnueabihf (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../04-g++-14_14.2.0-15_armhf.deb ...
  Unpacking g++-14 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../05-gcc-14_14.2.0-15_armhf.deb ...
  Unpacking gcc-14 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../06-cpp-14_14.2.0-15_armhf.deb ...
  Unpacking cpp-14 (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../07-cpp-14-arm-linux-gnueabihf_14.2.0-15_armhf.deb ...
  Unpacking cpp-14-arm-linux-gnueabihf (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../08-libcc1-0_14.2.0-15_armhf.deb ...
  Unpacking libcc1-0:armhf (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../09-gcc-14-arm-linux-gnueabihf_14.2.0-15_armhf.deb ...
  Unpacking gcc-14-arm-linux-gnueabihf (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../10-libgcc-14-dev_14.2.0-15_armhf.deb ...
  Unpacking libgcc-14-dev:armhf (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../11-libstdc++-14-dev_14.2.0-15_armhf.deb ...
  Unpacking libstdc++-14-dev:armhf (14.2.0-15) over (14.2.0-14) ...
  Preparing to unpack .../12-libgcc-s1_14.2.0-15_armhf.deb ...
  Unpacking libgcc-s1:armhf (14.2.0-15) over (14.2.0-14) ...
  Setting up libgcc-s1:armhf (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 ... 13774 files and directories currently installed.)
  Preparing to unpack .../0-libctf0_2.43.90.20250127-1_armhf.deb ...
  Unpacking libctf0:armhf (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../1-libctf-nobfd0_2.43.90.20250127-1_armhf.deb ...
  Unpacking libctf-nobfd0:armhf (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../2-binutils-gold_2.43.90.20250127-1_armhf.deb ...
  Unpacking binutils-gold (2.43.90.20250127-1) over (2.43.90.20250121-2) ...
  Preparing to unpack .../3-binutils-gold-arm-linux-gnueabihf_2.43.90.20250127-1_armhf.deb ...
  Unpacking binutils-gold-arm-linux-gnueabihf (2.43.90.20250127-1) over (2.43.90.20250121-2) ...
  Preparing to unpack .../4-libsframe1_2.43.90.20250127-1_armhf.deb ...
  Unpacking libsframe1:armhf (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../5-libbinutils_2.43.90.20250127-1_armhf.deb ...
  Unpacking libbinutils:armhf (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../6-binutils-common_2.43.90.20250127-1_armhf.deb ...
  Unpacking binutils-common:armhf (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../7-binutils_2.43.90.20250127-1_armhf.deb ...
  Unpacking binutils (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../8-binutils-arm-linux-gnueabihf_2.43.90.20250127-1_armhf.deb ...
  Unpacking binutils-arm-linux-gnueabihf (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../9-libselinux1_3.7-3.1_armhf.deb ...
  Unpacking libselinux1:armhf (3.7-3.1) over (3.7-3+b1) ...
  Setting up libselinux1:armhf (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 ... 13786 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 ... 13786 files and directories currently installed.)
  Preparing to unpack .../libsemanage2_3.7-2.1_armhf.deb ...
  Unpacking libsemanage2:armhf (3.7-2.1) over (3.7-2+b1) ...
  Setting up libsemanage2:armhf (3.7-2.1) ...
  Setting up binutils-gold-arm-linux-gnueabihf (2.43.90.20250127-1) ...
  Setting up binutils-gold (2.43.90.20250127-1) ...
  Setting up binutils-common:armhf (2.43.90.20250127-1) ...
  Setting up libctf-nobfd0:armhf (2.43.90.20250127-1) ...
  Setting up libgomp1:armhf (14.2.0-15) ...
  Setting up libsframe1:armhf (2.43.90.20250127-1) ...
  Setting up libatomic1:armhf (14.2.0-15) ...
  Setting up libubsan1:armhf (14.2.0-15) ...
  Setting up libasan8:armhf (14.2.0-15) ...
  Setting up libgcc-14-dev:armhf (14.2.0-15) ...
  Setting up libbinutils:armhf (2.43.90.20250127-1) ...
  Setting up libstdc++-14-dev:armhf (14.2.0-15) ...
  Setting up libcc1-0:armhf (14.2.0-15) ...
  Setting up cpp-14-arm-linux-gnueabihf (14.2.0-15) ...
  Setting up libctf0:armhf (2.43.90.20250127-1) ...
  Setting up cpp-14 (14.2.0-15) ...
  Setting up binutils-arm-linux-gnueabihf (2.43.90.20250127-1) ...
  Setting up gcc-14-arm-linux-gnueabihf (14.2.0-15) ...
  Setting up binutils (2.43.90.20250127-1) ...
  Setting up gcc-14 (14.2.0-15) ...
  Setting up g++-14-arm-linux-gnueabihf (14.2.0-15) ...
  Setting up g++-14 (14.2.0-15) ...
  Processing triggers for libc-bin (2.40-6) ...
0m14.9s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', '-yf', 'dist-upgrade']
0m14.9s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'sh', '-c', 'apt-cache dumpavail | md5sum']
0m15.2s DUMP: 
  6d6d1611a19f2d29764cf18ac1a90156  -
0m15.2s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'sh', '-c', 'apt-cache dumpavail | md5sum']
0m15.2s INFO: Running scripts post_setup
0m15.2s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', 'clean']
0m15.3s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', 'clean']
0m15.3s DEBUG: Recording chroot state
0m15.5s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m15.5s 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-arm-linux-gnueabihf	binutils-arm-linux-gnueabihf	2.43.90.20250127-1
  install ok installed	binutils-common:armhf	binutils-common	2.43.90.20250127-1
  install ok installed	binutils-gold	binutils-gold	2.43.90.20250127-1
  install ok installed	binutils-gold-arm-linux-gnueabihf	binutils-gold-arm-linux-gnueabihf	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-arm-linux-gnueabihf	cpp-14-arm-linux-gnueabihf	14.2.0-15
  install ok installed	cpp-arm-linux-gnueabihf	cpp-arm-linux-gnueabihf	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-arm-linux-gnueabihf	g++-14-arm-linux-gnueabihf	14.2.0-15
  install ok installed	g++-arm-linux-gnueabihf	g++-arm-linux-gnueabihf	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-arm-linux-gnueabihf	gcc-14-arm-linux-gnueabihf	14.2.0-15
  install ok installed	gcc-14-base:armhf	gcc-14-base	14.2.0-15
  install ok installed	gcc-arm-linux-gnueabihf	gcc-arm-linux-gnueabihf	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:armhf	libacl1	2.3.2-2+b1
  install ok installed	libapparmor1:armhf	libapparmor1	3.1.7-1+b3
  install ok installed	libapt-pkg6.0t64:armhf	libapt-pkg6.0t64	2.9.25
  install ok installed	libasan8:armhf	libasan8	14.2.0-15
  install ok installed	libatomic1:armhf	libatomic1	14.2.0-15
  install ok installed	libattr1:armhf	libattr1	1:2.5.2-2
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:armhf	libaudit1	1:4.0.2-2+b1
  install ok installed	libbinutils:armhf	libbinutils	2.43.90.20250127-1
  install ok installed	libblkid1:armhf	libblkid1	2.40.4-1
  install ok installed	libbsd0:armhf	libbsd0	0.12.2-2
  install ok installed	libbz2-1.0:armhf	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:armhf	libc6	2.40-6
  install ok installed	libc6-dev:armhf	libc6-dev	2.40-6
  install ok installed	libcap-ng0:armhf	libcap-ng0	0.8.5-4
  install ok installed	libcap2:armhf	libcap2	1:2.66-5+b1
  install ok installed	libcc1-0:armhf	libcc1-0	14.2.0-15
  install ok installed	libcom-err2:armhf	libcom-err2	1.47.2-1
  install ok installed	libcrypt-dev:armhf	libcrypt-dev	1:4.4.38-1
  install ok installed	libcrypt1:armhf	libcrypt1	1:4.4.38-1
  install ok installed	libctf-nobfd0:armhf	libctf-nobfd0	2.43.90.20250127-1
  install ok installed	libctf0:armhf	libctf0	2.43.90.20250127-1
  install ok installed	libdb5.3t64:armhf	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdbus-1-3:armhf	libdbus-1-3	1.16.0-1
  install ok installed	libdebconfclient0:armhf	libdebconfclient0	0.277
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.14
  install ok installed	libexpat1:armhf	libexpat1	2.6.4-1
  install ok installed	libext2fs2t64:armhf	libext2fs2t64	1.47.2-1
  install ok installed	libgcc-14-dev:armhf	libgcc-14-dev	14.2.0-15
  install ok installed	libgcc-s1:armhf	libgcc-s1	14.2.0-15
  install ok installed	libgdbm-compat4t64:armhf	libgdbm-compat4t64	1.24-2
  install ok installed	libgdbm6t64:armhf	libgdbm6t64	1.24-2
  install ok installed	libgmp10:armhf	libgmp10	2:6.3.0+dfsg-3
  install ok installed	libgomp1:armhf	libgomp1	14.2.0-15
  install ok installed	libhogweed6t64:armhf	libhogweed6t64	3.10-1+b1
  install ok installed	libisl23:armhf	libisl23	0.27-1
  install ok installed	libjansson4:armhf	libjansson4	2.14-2+b3
  install ok installed	liblz4-1:armhf	liblz4-1	1.10.0-3
  install ok installed	liblzma5:armhf	liblzma5	5.6.3-1+b1
  install ok installed	libmd0:armhf	libmd0	1.1.0-2+b1
  install ok installed	libmount1:armhf	libmount1	2.40.4-1
  install ok installed	libmpc3:armhf	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:armhf	libmpfr6	4.2.1-1+b2
  install ok installed	libnettle8t64:armhf	libnettle8t64	3.10-1+b1
  install ok installed	libpam-modules:armhf	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:armhf	libpam0g	1.5.3-7+b1
  install ok installed	libpcre2-8-0:armhf	libpcre2-8-0	10.44-5
  install ok installed	libperl5.40:armhf	libperl5.40	5.40.0-8
  install ok installed	libseccomp2:armhf	libseccomp2	2.5.5-2
  install ok installed	libselinux1:armhf	libselinux1	3.7-3.1
  install ok installed	libsemanage-common	libsemanage-common	3.7-2.1
  install ok installed	libsemanage2:armhf	libsemanage2	3.7-2.1
  install ok installed	libsepol2:armhf	libsepol2	3.7-1
  install ok installed	libsframe1:armhf	libsframe1	2.43.90.20250127-1
  install ok installed	libsmartcols1:armhf	libsmartcols1	2.40.4-1
  install ok installed	libss2:armhf	libss2	1.47.2-1
  install ok installed	libssl3t64:armhf	libssl3t64	3.4.0-2
  install ok installed	libstdc++-14-dev:armhf	libstdc++-14-dev	14.2.0-15
  install ok installed	libstdc++6:armhf	libstdc++6	14.2.0-15
  install ok installed	libsystemd-shared:armhf	libsystemd-shared	257.2-3
  install ok installed	libsystemd0:armhf	libsystemd0	257.2-3
  install ok installed	libtinfo6:armhf	libtinfo6	6.5-2+b1
  install ok installed	libubsan1:armhf	libubsan1	14.2.0-15
  install ok installed	libudev1:armhf	libudev1	257.2-3
  install ok installed	libuuid1:armhf	libuuid1	2.40.4-1
  install ok installed	libxxhash0:armhf	libxxhash0	0.8.3-2
  install ok installed	libzstd1:armhf	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:armhf	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m15.5s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m15.5s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-divert', '--list']
0m15.5s DUMP: 
  diversion of /lib/arm-linux-gnueabihf/libe2p.so.2.3 to /lib/arm-linux-gnueabihf/libe2p.so.2.3.usr-is-merged by libext2fs2t64
  diversion of /lib/ld-linux-armhf.so.3 to /lib/ld-linux-armhf.so.3.usr-is-merged by libc6
  diversion of /lib/arm-linux-gnueabihf/libe2p.so.2 to /lib/arm-linux-gnueabihf/libe2p.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib64 to /.lib64.usr-is-merged by base-files
  diversion of /libx32 to /.libx32.usr-is-merged by base-files
  diversion of /lib/arm-linux-gnueabihf/libext2fs.so.2.4 to /lib/arm-linux-gnueabihf/libext2fs.so.2.4.usr-is-merged by libext2fs2t64
  diversion of /lib32 to /.lib32.usr-is-merged by base-files
  diversion of /libo32 to /.libo32.usr-is-merged by base-files
  diversion of /lib/arm-linux-gnueabihf/libext2fs.so.2 to /lib/arm-linux-gnueabihf/libext2fs.so.2.usr-is-merged by libext2fs2t64
0m15.5s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-divert', '--list']
0m15.5s INFO: Running scripts is_testable
0m15.5s INFO: apt-cache does not know about any of the requested packages
0m15.5s INFO: Running scripts pre_test
0m15.5s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m15.9s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m16.4s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m16.4s INFO: Running scripts pre_install
0m16.4s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m16.8s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m17.4s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m17.4s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m17.4s DUMP: 
  2.9.25
0m17.4s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m17.4s DEBUG: Copying /tmp/debusine-fetch-exec-upload-m1bllaah/chkrootkit-dbgsym_0.58b-4_armhf.deb, /tmp/debusine-fetch-exec-upload-m1bllaah/chkrootkit_0.58b-4_armhf.deb to /tmp/tmp961d4uyl/tmp
0m17.4s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/chkrootkit-dbgsym_0.58b-4_armhf.deb', './tmp/chkrootkit_0.58b-4_armhf.deb']
0m20.2s 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/312 kB of archives.
  After this operation, 1611 kB of additional disk space will be used.
  Get:1 /tmp/chkrootkit_0.58b-4_armhf.deb chkrootkit armhf 0.58b-4 [240 kB]
  Get:2 /tmp/chkrootkit-dbgsym_0.58b-4_armhf.deb chkrootkit-dbgsym armhf 0.58b-4 [72.5 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 ... 13785 files and directories currently installed.)
  Preparing to unpack .../chkrootkit_0.58b-4_armhf.deb ...
  Unpacking chkrootkit (0.58b-4) ...
  Selecting previously unselected package chkrootkit-dbgsym.
  Preparing to unpack .../chkrootkit-dbgsym_0.58b-4_armhf.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) ...
0m20.2s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/chkrootkit-dbgsym_0.58b-4_armhf.deb', './tmp/chkrootkit_0.58b-4_armhf.deb']
0m20.2s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'chkrootkit-dbgsym', 'chkrootkit']
0m20.2s DUMP: 
  chkrootkit install ok installed
  chkrootkit-dbgsym install ok installed
0m20.2s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'chkrootkit-dbgsym', 'chkrootkit']
0m20.2s INFO: Installation of ['./tmp/chkrootkit-dbgsym_0.58b-4_armhf.deb', './tmp/chkrootkit_0.58b-4_armhf.deb'] ok
0m20.2s DEBUG: Removing /tmp/tmp961d4uyl/./tmp/chkrootkit-dbgsym_0.58b-4_armhf.deb
0m20.2s DEBUG: Removing /tmp/tmp961d4uyl/./tmp/chkrootkit_0.58b-4_armhf.deb
0m20.2s INFO: Running scripts post_install
0m20.2s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m20.6s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m21.1s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m21.4s DEBUG: Starting command: ['debsums', '--root', '/tmp/tmp961d4uyl', '-ac', '--ignore-obsolete']
0m22.6s DEBUG: Command ok: ['debsums', '--root', '/tmp/tmp961d4uyl', '-ac', '--ignore-obsolete']
0m22.6s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m22.6s DUMP: 
  0.17.5
0m22.6s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m22.6s INFO: Running adequate version 0.17.5 now.
0m22.6s DEBUG: Starting command: ['adequate', '--root', '/tmp/tmp961d4uyl', 'chkrootkit-dbgsym', 'chkrootkit']
0m22.7s DEBUG: Command ok: ['adequate', '--root', '/tmp/tmp961d4uyl', 'chkrootkit-dbgsym', 'chkrootkit']
0m22.7s INFO: Running scripts pre_remove
0m22.7s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m22.7s 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-arm-linux-gnueabihf	binutils-arm-linux-gnueabihf	2.43.90.20250127-1
  install ok installed	binutils-common:armhf	binutils-common	2.43.90.20250127-1
  install ok installed	binutils-gold	binutils-gold	2.43.90.20250127-1
  install ok installed	binutils-gold-arm-linux-gnueabihf	binutils-gold-arm-linux-gnueabihf	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-arm-linux-gnueabihf	cpp-14-arm-linux-gnueabihf	14.2.0-15
  install ok installed	cpp-arm-linux-gnueabihf	cpp-arm-linux-gnueabihf	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-arm-linux-gnueabihf	g++-14-arm-linux-gnueabihf	14.2.0-15
  install ok installed	g++-arm-linux-gnueabihf	g++-arm-linux-gnueabihf	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-arm-linux-gnueabihf	gcc-14-arm-linux-gnueabihf	14.2.0-15
  install ok installed	gcc-14-base:armhf	gcc-14-base	14.2.0-15
  install ok installed	gcc-arm-linux-gnueabihf	gcc-arm-linux-gnueabihf	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:armhf	libacl1	2.3.2-2+b1
  install ok installed	libapparmor1:armhf	libapparmor1	3.1.7-1+b3
  install ok installed	libapt-pkg6.0t64:armhf	libapt-pkg6.0t64	2.9.25
  install ok installed	libasan8:armhf	libasan8	14.2.0-15
  install ok installed	libatomic1:armhf	libatomic1	14.2.0-15
  install ok installed	libattr1:armhf	libattr1	1:2.5.2-2
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:armhf	libaudit1	1:4.0.2-2+b1
  install ok installed	libbinutils:armhf	libbinutils	2.43.90.20250127-1
  install ok installed	libblkid1:armhf	libblkid1	2.40.4-1
  install ok installed	libbsd0:armhf	libbsd0	0.12.2-2
  install ok installed	libbz2-1.0:armhf	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:armhf	libc6	2.40-6
  install ok installed	libc6-dev:armhf	libc6-dev	2.40-6
  install ok installed	libcap-ng0:armhf	libcap-ng0	0.8.5-4
  install ok installed	libcap2:armhf	libcap2	1:2.66-5+b1
  install ok installed	libcc1-0:armhf	libcc1-0	14.2.0-15
  install ok installed	libcom-err2:armhf	libcom-err2	1.47.2-1
  install ok installed	libcrypt-dev:armhf	libcrypt-dev	1:4.4.38-1
  install ok installed	libcrypt1:armhf	libcrypt1	1:4.4.38-1
  install ok installed	libctf-nobfd0:armhf	libctf-nobfd0	2.43.90.20250127-1
  install ok installed	libctf0:armhf	libctf0	2.43.90.20250127-1
  install ok installed	libdb5.3t64:armhf	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdbus-1-3:armhf	libdbus-1-3	1.16.0-1
  install ok installed	libdebconfclient0:armhf	libdebconfclient0	0.277
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.14
  install ok installed	libexpat1:armhf	libexpat1	2.6.4-1
  install ok installed	libext2fs2t64:armhf	libext2fs2t64	1.47.2-1
  install ok installed	libgcc-14-dev:armhf	libgcc-14-dev	14.2.0-15
  install ok installed	libgcc-s1:armhf	libgcc-s1	14.2.0-15
  install ok installed	libgdbm-compat4t64:armhf	libgdbm-compat4t64	1.24-2
  install ok installed	libgdbm6t64:armhf	libgdbm6t64	1.24-2
  install ok installed	libgmp10:armhf	libgmp10	2:6.3.0+dfsg-3
  install ok installed	libgomp1:armhf	libgomp1	14.2.0-15
  install ok installed	libhogweed6t64:armhf	libhogweed6t64	3.10-1+b1
  install ok installed	libisl23:armhf	libisl23	0.27-1
  install ok installed	libjansson4:armhf	libjansson4	2.14-2+b3
  install ok installed	liblz4-1:armhf	liblz4-1	1.10.0-3
  install ok installed	liblzma5:armhf	liblzma5	5.6.3-1+b1
  install ok installed	libmd0:armhf	libmd0	1.1.0-2+b1
  install ok installed	libmount1:armhf	libmount1	2.40.4-1
  install ok installed	libmpc3:armhf	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:armhf	libmpfr6	4.2.1-1+b2
  install ok installed	libnettle8t64:armhf	libnettle8t64	3.10-1+b1
  install ok installed	libpam-modules:armhf	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:armhf	libpam0g	1.5.3-7+b1
  install ok installed	libpcre2-8-0:armhf	libpcre2-8-0	10.44-5
  install ok installed	libperl5.40:armhf	libperl5.40	5.40.0-8
  install ok installed	libseccomp2:armhf	libseccomp2	2.5.5-2
  install ok installed	libselinux1:armhf	libselinux1	3.7-3.1
  install ok installed	libsemanage-common	libsemanage-common	3.7-2.1
  install ok installed	libsemanage2:armhf	libsemanage2	3.7-2.1
  install ok installed	libsepol2:armhf	libsepol2	3.7-1
  install ok installed	libsframe1:armhf	libsframe1	2.43.90.20250127-1
  install ok installed	libsmartcols1:armhf	libsmartcols1	2.40.4-1
  install ok installed	libss2:armhf	libss2	1.47.2-1
  install ok installed	libssl3t64:armhf	libssl3t64	3.4.0-2
  install ok installed	libstdc++-14-dev:armhf	libstdc++-14-dev	14.2.0-15
  install ok installed	libstdc++6:armhf	libstdc++6	14.2.0-15
  install ok installed	libsystemd-shared:armhf	libsystemd-shared	257.2-3
  install ok installed	libsystemd0:armhf	libsystemd0	257.2-3
  install ok installed	libtinfo6:armhf	libtinfo6	6.5-2+b1
  install ok installed	libubsan1:armhf	libubsan1	14.2.0-15
  install ok installed	libudev1:armhf	libudev1	257.2-3
  install ok installed	libuuid1:armhf	libuuid1	2.40.4-1
  install ok installed	libxxhash0:armhf	libxxhash0	0.8.3-2
  install ok installed	libzstd1:armhf	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:armhf	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m22.7s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m22.7s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', 'remove', 'chkrootkit', 'chkrootkit-dbgsym']
0m23.9s 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, 1611 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 ... 13843 files and directories currently installed.)
  Removing chkrootkit-dbgsym (0.58b-4) ...
  Removing chkrootkit (0.58b-4) ...
0m23.9s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', 'remove', 'chkrootkit', 'chkrootkit-dbgsym']
0m23.9s INFO: Running scripts post_remove
0m23.9s INFO: Package chkrootkit contains cron file: /etc/cron.daily/chkrootkit
0m23.9s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', '/etc/cron.daily/chkrootkit']
0m23.9s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', '/etc/cron.daily/chkrootkit']
0m23.9s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg', '--purge', 'chkrootkit', 'chkrootkit-dbgsym']
0m24.1s DUMP: 
  (Reading database ... 13789 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
0m24.1s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg', '--purge', 'chkrootkit', 'chkrootkit-dbgsym']
0m24.1s INFO: Running scripts post_purge
0m24.1s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg', '--purge', '--pending']
0m24.1s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg', '--purge', '--pending']
0m24.1s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg', '--remove', '--pending']
0m24.1s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg', '--remove', '--pending']
0m24.1s INFO: Running scripts post_test
0m24.1s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m24.5s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m25.0s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m25.0s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-divert', '--list']
0m25.0s DUMP: 
  diversion of /lib/arm-linux-gnueabihf/libe2p.so.2.3 to /lib/arm-linux-gnueabihf/libe2p.so.2.3.usr-is-merged by libext2fs2t64
  diversion of /lib/ld-linux-armhf.so.3 to /lib/ld-linux-armhf.so.3.usr-is-merged by libc6
  diversion of /lib/arm-linux-gnueabihf/libe2p.so.2 to /lib/arm-linux-gnueabihf/libe2p.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib64 to /.lib64.usr-is-merged by base-files
  diversion of /libx32 to /.libx32.usr-is-merged by base-files
  diversion of /lib/arm-linux-gnueabihf/libext2fs.so.2.4 to /lib/arm-linux-gnueabihf/libext2fs.so.2.4.usr-is-merged by libext2fs2t64
  diversion of /lib32 to /.lib32.usr-is-merged by base-files
  diversion of /libo32 to /.libo32.usr-is-merged by base-files
  diversion of /lib/arm-linux-gnueabihf/libext2fs.so.2 to /lib/arm-linux-gnueabihf/libext2fs.so.2.usr-is-merged by libext2fs2t64
0m25.0s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-divert', '--list']
0m25.0s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', 'clean']
0m25.1s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', 'clean']
0m25.1s DEBUG: Recording chroot state
0m25.4s INFO: PASS: Installation and purging test.
0m25.4s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-cache', 'show', '--no-all-versions', 'chkrootkit-dbgsym']
0m26.6s DUMP: 
  E: No packages found
0m26.6s DEBUG: Command failed (status=100), but ignoring error: ['chroot', '/tmp/tmp961d4uyl', 'apt-cache', 'show', '--no-all-versions', 'chkrootkit-dbgsym']
0m26.6s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-cache', 'show', '--no-all-versions', 'chkrootkit']
0m26.9s DUMP: 
  Package: chkrootkit
  Source: chkrootkit (0.58b-3)
  Version: 0.58b-3+b1
  Installed-Size: 1015
  Maintainer: Debian Security Tools <team+pkg-security@tracker.debian.org>
  Architecture: armhf
  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_armhf.deb
  Size: 238304
  MD5sum: e96b8cfa6e94a12b853cd7cd078f0cdc
  SHA256: 24ee1d647cf33e56b80fce4a07d193b985e1ccb2a57e7790487b1a3f8a67baf3
0m26.9s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-cache', 'show', '--no-all-versions', 'chkrootkit']
0m26.9s INFO: apt-cache knows about the following packages: chkrootkit
0m26.9s INFO: the following packages are not in the archive: chkrootkit-dbgsym
0m26.9s INFO: Running scripts pre_test
0m26.9s INFO: Running scripts pre_install
0m26.9s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-cache', 'policy']
0m27.0s DUMP: 
  Package files:
   100 /var/lib/dpkg/status
       release a=now
   500 http://deb.debian.org/debian sid/main armhf Packages
       release o=Debian,a=unstable,n=sid,l=Debian,c=main,b=armhf
       origin deb.debian.org
  Pinned packages:
0m27.0s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-cache', 'policy']
0m27.0s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-cache', 'policy', 'chkrootkit']
0m27.0s DUMP: 
  chkrootkit:
    Installed: (none)
    Candidate: 0.58b-3+b1
    Version table:
       0.58b-3+b1 500
          500 http://deb.debian.org/debian sid/main armhf Packages
0m27.0s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-cache', 'policy', 'chkrootkit']
0m27.0s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', '-y', 'install', 'chkrootkit']
0m29.0s 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 238 kB of archives.
  After this operation, 1039 kB of additional disk space will be used.
  Get:1 http://deb.debian.org/debian sid/main armhf chkrootkit armhf 0.58b-3+b1 [238 kB]
  Fetched 238 kB in 0s (985 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 ... 13785 files and directories currently installed.)
  Preparing to unpack .../chkrootkit_0.58b-3+b1_armhf.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'.
0m29.0s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', '-y', 'install', 'chkrootkit']
0m29.0s INFO: Running scripts post_install
0m29.0s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m29.4s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m30.0s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m30.0s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m30.0s DUMP: 
  2.9.25
0m30.0s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m30.0s DEBUG: Copying /tmp/debusine-fetch-exec-upload-m1bllaah/chkrootkit-dbgsym_0.58b-4_armhf.deb, /tmp/debusine-fetch-exec-upload-m1bllaah/chkrootkit_0.58b-4_armhf.deb to /tmp/tmp961d4uyl/tmp
0m30.0s INFO: Running scripts pre_install
0m30.0s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/chkrootkit-dbgsym_0.58b-4_armhf.deb', './tmp/chkrootkit_0.58b-4_armhf.deb']
0m31.7s 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/312 kB of archives.
  After this operation, 571 kB of additional disk space will be used.
  Get:1 /tmp/chkrootkit_0.58b-4_armhf.deb chkrootkit armhf 0.58b-4 [240 kB]
  Get:2 /tmp/chkrootkit-dbgsym_0.58b-4_armhf.deb chkrootkit-dbgsym armhf 0.58b-4 [72.5 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 ... 13822 files and directories currently installed.)
  Preparing to unpack .../chkrootkit_0.58b-4_armhf.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_armhf.deb ...
  Unpacking chkrootkit-dbgsym (0.58b-4) ...
  Setting up chkrootkit (0.58b-4) ...
  Setting up chkrootkit-dbgsym (0.58b-4) ...
0m31.7s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/chkrootkit-dbgsym_0.58b-4_armhf.deb', './tmp/chkrootkit_0.58b-4_armhf.deb']
0m31.7s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'chkrootkit-dbgsym', 'chkrootkit']
0m31.7s DUMP: 
  chkrootkit install ok installed
  chkrootkit-dbgsym install ok installed
0m31.7s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'chkrootkit-dbgsym', 'chkrootkit']
0m31.7s INFO: Installation of ['./tmp/chkrootkit-dbgsym_0.58b-4_armhf.deb', './tmp/chkrootkit_0.58b-4_armhf.deb'] ok
0m31.7s INFO: Running scripts post_install
0m31.7s DEBUG: Removing /tmp/tmp961d4uyl/./tmp/chkrootkit-dbgsym_0.58b-4_armhf.deb
0m31.7s DEBUG: Removing /tmp/tmp961d4uyl/./tmp/chkrootkit_0.58b-4_armhf.deb
0m31.7s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m32.1s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m32.6s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m33.0s DEBUG: Starting command: ['debsums', '--root', '/tmp/tmp961d4uyl', '-ac', '--ignore-obsolete']
0m34.2s DEBUG: Command ok: ['debsums', '--root', '/tmp/tmp961d4uyl', '-ac', '--ignore-obsolete']
0m34.2s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m34.2s DUMP: 
  0.17.5
0m34.2s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m34.2s INFO: Running adequate version 0.17.5 now.
0m34.2s DEBUG: Starting command: ['adequate', '--root', '/tmp/tmp961d4uyl', 'chkrootkit-dbgsym', 'chkrootkit']
0m34.2s DEBUG: Command ok: ['adequate', '--root', '/tmp/tmp961d4uyl', 'chkrootkit-dbgsym', 'chkrootkit']
0m34.2s INFO: Running scripts pre_remove
0m34.2s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m34.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-arm-linux-gnueabihf	binutils-arm-linux-gnueabihf	2.43.90.20250127-1
  install ok installed	binutils-common:armhf	binutils-common	2.43.90.20250127-1
  install ok installed	binutils-gold	binutils-gold	2.43.90.20250127-1
  install ok installed	binutils-gold-arm-linux-gnueabihf	binutils-gold-arm-linux-gnueabihf	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-arm-linux-gnueabihf	cpp-14-arm-linux-gnueabihf	14.2.0-15
  install ok installed	cpp-arm-linux-gnueabihf	cpp-arm-linux-gnueabihf	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-arm-linux-gnueabihf	g++-14-arm-linux-gnueabihf	14.2.0-15
  install ok installed	g++-arm-linux-gnueabihf	g++-arm-linux-gnueabihf	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-arm-linux-gnueabihf	gcc-14-arm-linux-gnueabihf	14.2.0-15
  install ok installed	gcc-14-base:armhf	gcc-14-base	14.2.0-15
  install ok installed	gcc-arm-linux-gnueabihf	gcc-arm-linux-gnueabihf	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:armhf	libacl1	2.3.2-2+b1
  install ok installed	libapparmor1:armhf	libapparmor1	3.1.7-1+b3
  install ok installed	libapt-pkg6.0t64:armhf	libapt-pkg6.0t64	2.9.25
  install ok installed	libasan8:armhf	libasan8	14.2.0-15
  install ok installed	libatomic1:armhf	libatomic1	14.2.0-15
  install ok installed	libattr1:armhf	libattr1	1:2.5.2-2
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:armhf	libaudit1	1:4.0.2-2+b1
  install ok installed	libbinutils:armhf	libbinutils	2.43.90.20250127-1
  install ok installed	libblkid1:armhf	libblkid1	2.40.4-1
  install ok installed	libbsd0:armhf	libbsd0	0.12.2-2
  install ok installed	libbz2-1.0:armhf	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:armhf	libc6	2.40-6
  install ok installed	libc6-dev:armhf	libc6-dev	2.40-6
  install ok installed	libcap-ng0:armhf	libcap-ng0	0.8.5-4
  install ok installed	libcap2:armhf	libcap2	1:2.66-5+b1
  install ok installed	libcc1-0:armhf	libcc1-0	14.2.0-15
  install ok installed	libcom-err2:armhf	libcom-err2	1.47.2-1
  install ok installed	libcrypt-dev:armhf	libcrypt-dev	1:4.4.38-1
  install ok installed	libcrypt1:armhf	libcrypt1	1:4.4.38-1
  install ok installed	libctf-nobfd0:armhf	libctf-nobfd0	2.43.90.20250127-1
  install ok installed	libctf0:armhf	libctf0	2.43.90.20250127-1
  install ok installed	libdb5.3t64:armhf	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdbus-1-3:armhf	libdbus-1-3	1.16.0-1
  install ok installed	libdebconfclient0:armhf	libdebconfclient0	0.277
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.14
  install ok installed	libexpat1:armhf	libexpat1	2.6.4-1
  install ok installed	libext2fs2t64:armhf	libext2fs2t64	1.47.2-1
  install ok installed	libgcc-14-dev:armhf	libgcc-14-dev	14.2.0-15
  install ok installed	libgcc-s1:armhf	libgcc-s1	14.2.0-15
  install ok installed	libgdbm-compat4t64:armhf	libgdbm-compat4t64	1.24-2
  install ok installed	libgdbm6t64:armhf	libgdbm6t64	1.24-2
  install ok installed	libgmp10:armhf	libgmp10	2:6.3.0+dfsg-3
  install ok installed	libgomp1:armhf	libgomp1	14.2.0-15
  install ok installed	libhogweed6t64:armhf	libhogweed6t64	3.10-1+b1
  install ok installed	libisl23:armhf	libisl23	0.27-1
  install ok installed	libjansson4:armhf	libjansson4	2.14-2+b3
  install ok installed	liblz4-1:armhf	liblz4-1	1.10.0-3
  install ok installed	liblzma5:armhf	liblzma5	5.6.3-1+b1
  install ok installed	libmd0:armhf	libmd0	1.1.0-2+b1
  install ok installed	libmount1:armhf	libmount1	2.40.4-1
  install ok installed	libmpc3:armhf	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:armhf	libmpfr6	4.2.1-1+b2
  install ok installed	libnettle8t64:armhf	libnettle8t64	3.10-1+b1
  install ok installed	libpam-modules:armhf	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:armhf	libpam0g	1.5.3-7+b1
  install ok installed	libpcre2-8-0:armhf	libpcre2-8-0	10.44-5
  install ok installed	libperl5.40:armhf	libperl5.40	5.40.0-8
  install ok installed	libseccomp2:armhf	libseccomp2	2.5.5-2
  install ok installed	libselinux1:armhf	libselinux1	3.7-3.1
  install ok installed	libsemanage-common	libsemanage-common	3.7-2.1
  install ok installed	libsemanage2:armhf	libsemanage2	3.7-2.1
  install ok installed	libsepol2:armhf	libsepol2	3.7-1
  install ok installed	libsframe1:armhf	libsframe1	2.43.90.20250127-1
  install ok installed	libsmartcols1:armhf	libsmartcols1	2.40.4-1
  install ok installed	libss2:armhf	libss2	1.47.2-1
  install ok installed	libssl3t64:armhf	libssl3t64	3.4.0-2
  install ok installed	libstdc++-14-dev:armhf	libstdc++-14-dev	14.2.0-15
  install ok installed	libstdc++6:armhf	libstdc++6	14.2.0-15
  install ok installed	libsystemd-shared:armhf	libsystemd-shared	257.2-3
  install ok installed	libsystemd0:armhf	libsystemd0	257.2-3
  install ok installed	libtinfo6:armhf	libtinfo6	6.5-2+b1
  install ok installed	libubsan1:armhf	libubsan1	14.2.0-15
  install ok installed	libudev1:armhf	libudev1	257.2-3
  install ok installed	libuuid1:armhf	libuuid1	2.40.4-1
  install ok installed	libxxhash0:armhf	libxxhash0	0.8.3-2
  install ok installed	libzstd1:armhf	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:armhf	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m34.2s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m34.2s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', 'remove', 'chkrootkit', 'chkrootkit-dbgsym']
0m35.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, 1611 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 ... 13843 files and directories currently installed.)
  Removing chkrootkit-dbgsym (0.58b-4) ...
  Removing chkrootkit (0.58b-4) ...
0m35.5s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', 'remove', 'chkrootkit', 'chkrootkit-dbgsym']
0m35.5s INFO: Running scripts post_remove
0m35.5s INFO: Package chkrootkit contains cron file: /etc/cron.daily/chkrootkit
0m35.5s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', '/etc/cron.daily/chkrootkit']
0m35.5s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', '/etc/cron.daily/chkrootkit']
0m35.5s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg', '--purge', 'chkrootkit', 'chkrootkit-dbgsym']
0m35.6s DUMP: 
  (Reading database ... 13789 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
0m35.6s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg', '--purge', 'chkrootkit', 'chkrootkit-dbgsym']
0m35.6s INFO: Running scripts post_purge
0m35.6s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg', '--purge', '--pending']
0m35.6s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg', '--purge', '--pending']
0m35.6s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg', '--remove', '--pending']
0m35.6s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg', '--remove', '--pending']
0m35.6s INFO: Running scripts post_test
0m35.6s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m36.0s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp961d4uyl']
0m36.6s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m36.6s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-divert', '--list']
0m36.6s DUMP: 
  diversion of /lib/arm-linux-gnueabihf/libe2p.so.2.3 to /lib/arm-linux-gnueabihf/libe2p.so.2.3.usr-is-merged by libext2fs2t64
  diversion of /lib/ld-linux-armhf.so.3 to /lib/ld-linux-armhf.so.3.usr-is-merged by libc6
  diversion of /lib/arm-linux-gnueabihf/libe2p.so.2 to /lib/arm-linux-gnueabihf/libe2p.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib64 to /.lib64.usr-is-merged by base-files
  diversion of /libx32 to /.libx32.usr-is-merged by base-files
  diversion of /lib/arm-linux-gnueabihf/libext2fs.so.2.4 to /lib/arm-linux-gnueabihf/libext2fs.so.2.4.usr-is-merged by libext2fs2t64
  diversion of /lib32 to /.lib32.usr-is-merged by base-files
  diversion of /libo32 to /.libo32.usr-is-merged by base-files
  diversion of /lib/arm-linux-gnueabihf/libext2fs.so.2 to /lib/arm-linux-gnueabihf/libext2fs.so.2.usr-is-merged by libext2fs2t64
0m36.6s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'dpkg-divert', '--list']
0m36.6s DEBUG: Starting command: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', 'clean']
0m36.6s DEBUG: Command ok: ['chroot', '/tmp/tmp961d4uyl', 'apt-get', 'clean']
0m36.6s DEBUG: Recording chroot state
0m36.9s INFO: PASS: Installation, upgrade and purging tests.
0m37.3s DEBUG: Starting command: ['umount', '/tmp/tmp961d4uyl/dev/tty']
0m37.3s DEBUG: Command ok: ['umount', '/tmp/tmp961d4uyl/dev/tty']
0m37.3s DEBUG: Starting command: ['umount', '/tmp/tmp961d4uyl/dev/urandom']
0m37.3s DEBUG: Command ok: ['umount', '/tmp/tmp961d4uyl/dev/urandom']
0m37.3s DEBUG: Starting command: ['umount', '/tmp/tmp961d4uyl/dev/random']
0m37.3s DEBUG: Command ok: ['umount', '/tmp/tmp961d4uyl/dev/random']
0m37.3s DEBUG: Starting command: ['umount', '/tmp/tmp961d4uyl/dev/full']
0m37.3s DEBUG: Command ok: ['umount', '/tmp/tmp961d4uyl/dev/full']
0m37.3s DEBUG: Starting command: ['umount', '/tmp/tmp961d4uyl/dev/zero']
0m37.3s DEBUG: Command ok: ['umount', '/tmp/tmp961d4uyl/dev/zero']
0m37.3s DEBUG: Starting command: ['umount', '/tmp/tmp961d4uyl/dev/null']
0m37.3s DEBUG: Command ok: ['umount', '/tmp/tmp961d4uyl/dev/null']
0m37.3s DEBUG: Starting command: ['umount', '/tmp/tmp961d4uyl/dev/shm']
0m37.3s DEBUG: Command ok: ['umount', '/tmp/tmp961d4uyl/dev/shm']
0m37.3s DEBUG: Starting command: ['umount', '/tmp/tmp961d4uyl/dev/pts']
0m37.3s DEBUG: Command ok: ['umount', '/tmp/tmp961d4uyl/dev/pts']
0m37.3s DEBUG: Starting command: ['umount', '/tmp/tmp961d4uyl/proc']
0m37.3s DEBUG: Command ok: ['umount', '/tmp/tmp961d4uyl/proc']
0m37.3s DEBUG: Starting command: ['rm', '-rf', '--one-file-system', '/tmp/tmp961d4uyl']
0m37.6s DEBUG: Command ok: ['rm', '-rf', '--one-file-system', '/tmp/tmp961d4uyl']
0m37.6s DEBUG: Removed directory tree at /tmp/tmp961d4uyl
0m37.6s INFO: PASS: All tests.
0m37.6s INFO: piuparts run ends.

Files in working directory:

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