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
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-kzvyw9h8/base_tar/system.tar.gz --scriptsdir=/tmp/debusine-fetch-exec-upload-kzvyw9h8/scripts /tmp/debusine-fetch-exec-upload-kzvyw9h8/chkrootkit-dbgsym_0.58b-4_arm64.deb /tmp/debusine-fetch-exec-upload-kzvyw9h8/chkrootkit_0.58b-4_arm64.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-kzvyw9h8/base_tar/system.tar.gz --scriptsdir=/tmp/debusine-fetch-exec-upload-kzvyw9h8/scripts /tmp/debusine-fetch-exec-upload-kzvyw9h8/chkrootkit-dbgsym_0.58b-4_arm64.deb /tmp/debusine-fetch-exec-upload-kzvyw9h8/chkrootkit_0.58b-4_arm64.deb
0m0.0s INFO: Running on: Linux debusine-worker-arm64-demeter-10 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-kzvyw9h8/chkrootkit-dbgsym_0.58b-4_arm64.deb']
0m0.0s DUMP: 
   new Debian package, version 2.0.
   size 72492 bytes: control archive=944 bytes.
       657 bytes,    12 lines      control
       936 bytes,     9 lines      md5sums
   Package: chkrootkit-dbgsym
   Source: chkrootkit
   Version: 0.58b-4
   Auto-Built-Package: debug-symbols
   Architecture: arm64
   Maintainer: Debian Security Tools <team+pkg-security@tracker.debian.org>
   Installed-Size: 809
   Depends: chkrootkit (= 0.58b-4)
   Section: debug
   Priority: optional
   Description: debug symbols for chkrootkit
   Build-Ids: 02945566a21275dc1ff40aa49ff55dbb21ebd769 16c9214ca55482e9fdd7e168432306ba6cf64466 31f82138d01464cc4e4e1c2346eeee22b39cce2a 3a5412eec4b21b0427394b9889debad3001b83a1 3cc64ca16cc3980b67130052397dfbb7ae614e07 3d09238d832a10d668db007665f0a5c51c5a5c58 8c79536dfc216315179b4aa6ff2986b9e19db7b6 cda6bbc9343fcedfb41b1b47e3febd6cf66fbcfe
0m0.0s DEBUG: Command ok: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-kzvyw9h8/chkrootkit-dbgsym_0.58b-4_arm64.deb']
0m0.0s DEBUG: Starting command: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-kzvyw9h8/chkrootkit_0.58b-4_arm64.deb']
0m0.0s DUMP: 
   new Debian package, version 2.0.
   size 274884 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: arm64
   Maintainer: Debian Security Tools <team+pkg-security@tracker.debian.org>
   Installed-Size: 1217
   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-kzvyw9h8/chkrootkit_0.58b-4_arm64.deb']
0m0.0s DEBUG: Created temporary directory /tmp/tmp1f9cl75e
0m0.0s DEBUG: Unpacking /tmp/debusine-fetch-exec-upload-kzvyw9h8/base_tar/system.tar.gz into /tmp/tmp1f9cl75e
0m0.0s DEBUG: Starting command: ['tar', '-C', '/tmp/tmp1f9cl75e', '--auto-compress', '-xf', '/tmp/debusine-fetch-exec-upload-kzvyw9h8/base_tar/system.tar.gz']
0m3.3s DUMP: 
  tar: Ignoring unknown extended header keyword 'hdrcharset'
0m3.3s DEBUG: Command ok: ['tar', '-C', '/tmp/tmp1f9cl75e', '--auto-compress', '-xf', '/tmp/debusine-fetch-exec-upload-kzvyw9h8/base_tar/system.tar.gz']
0m3.3s DEBUG: Starting command: ['mount', '-t', 'proc', 'proc', '/tmp/tmp1f9cl75e/proc']
0m3.3s DEBUG: Command ok: ['mount', '-t', 'proc', 'proc', '/tmp/tmp1f9cl75e/proc']
0m3.3s DEBUG: Starting command: ['mount', '-t', 'devpts', '-o', 'newinstance,noexec,nosuid,gid=5,mode=0620,ptmxmode=0666', 'devpts', '/tmp/tmp1f9cl75e/dev/pts']
0m3.3s DEBUG: Command ok: ['mount', '-t', 'devpts', '-o', 'newinstance,noexec,nosuid,gid=5,mode=0620,ptmxmode=0666', 'devpts', '/tmp/tmp1f9cl75e/dev/pts']
0m3.3s DEBUG: Starting command: ['mount', '-t', 'tmpfs', '-o', 'size=65536k', 'tmpfs', '/tmp/tmp1f9cl75e/dev/shm']
0m3.3s DEBUG: Command ok: ['mount', '-t', 'tmpfs', '-o', 'size=65536k', 'tmpfs', '/tmp/tmp1f9cl75e/dev/shm']
0m3.3s DEBUG: Created policy-rc.d and chmodded it.
0m3.3s DEBUG: Created resolv.conf.
0m3.3s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/null', '/tmp/tmp1f9cl75e/dev/null']
0m3.3s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/null', '/tmp/tmp1f9cl75e/dev/null']
0m3.3s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/zero', '/tmp/tmp1f9cl75e/dev/zero']
0m3.3s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/zero', '/tmp/tmp1f9cl75e/dev/zero']
0m3.3s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/full', '/tmp/tmp1f9cl75e/dev/full']
0m3.3s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/full', '/tmp/tmp1f9cl75e/dev/full']
0m3.3s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/random', '/tmp/tmp1f9cl75e/dev/random']
0m3.3s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/random', '/tmp/tmp1f9cl75e/dev/random']
0m3.3s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/urandom', '/tmp/tmp1f9cl75e/dev/urandom']
0m3.3s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/urandom', '/tmp/tmp1f9cl75e/dev/urandom']
0m3.3s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/tty', '/tmp/tmp1f9cl75e/dev/tty']
0m3.3s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/tty', '/tmp/tmp1f9cl75e/dev/tty']
0m3.3s DEBUG: Copying scriptsdir /tmp/debusine-fetch-exec-upload-kzvyw9h8/scripts to /tmp/tmp1f9cl75e/tmp/scripts/
0m3.3s INFO: Running scripts post_chroot_unpack
0m3.3s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', '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 arm64 Packages [9961 kB]
  Get:3 http://deb.debian.org/debian sid/main Translation-en [7345 kB]
  Fetched 17.5 MB in 2s (7170 kB/s)
  Reading package lists...
0m6.6s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', 'update']
0m6.6s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', '-yf', 'dist-upgrade']
0m10.1s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  Calculating upgrade...
  The following packages will be upgraded:
    binutils binutils-aarch64-linux-gnu binutils-common binutils-gold
    binutils-gold-aarch64-linux-gnu libbinutils libctf-nobfd0 libctf0
    libgprofng0 libselinux1 libsemanage-common libsemanage2 libsframe1
  13 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  Need to get 7334 kB of archives.
  After this operation, 891 kB of additional disk space will be used.
  Get:1 http://deb.debian.org/debian sid/main arm64 libselinux1 arm64 3.7-3.1 [71.9 kB]
  Get:2 http://deb.debian.org/debian sid/main arm64 libsemanage-common all 3.7-2.1 [7208 B]
  Get:3 http://deb.debian.org/debian sid/main arm64 libsemanage2 arm64 3.7-2.1 [84.7 kB]
  Get:4 http://deb.debian.org/debian sid/main arm64 libgprofng0 arm64 2.43.90.20250127-1 [669 kB]
  Get:5 http://deb.debian.org/debian sid/main arm64 libctf0 arm64 2.43.90.20250127-1 [84.1 kB]
  Get:6 http://deb.debian.org/debian sid/main arm64 libctf-nobfd0 arm64 2.43.90.20250127-1 [151 kB]
  Get:7 http://deb.debian.org/debian sid/main arm64 binutils-gold arm64 2.43.90.20250127-1 [202 kB]
  Get:8 http://deb.debian.org/debian sid/main arm64 binutils-gold-aarch64-linux-gnu arm64 2.43.90.20250127-1 [1704 kB]
  Get:9 http://deb.debian.org/debian sid/main arm64 binutils-aarch64-linux-gnu arm64 2.43.90.20250127-1 [825 kB]
  Get:10 http://deb.debian.org/debian sid/main arm64 libbinutils arm64 2.43.90.20250127-1 [663 kB]
  Get:11 http://deb.debian.org/debian sid/main arm64 binutils arm64 2.43.90.20250127-1 [261 kB]
  Get:12 http://deb.debian.org/debian sid/main arm64 binutils-common arm64 2.43.90.20250127-1 [2533 kB]
  Get:13 http://deb.debian.org/debian sid/main arm64 libsframe1 arm64 2.43.90.20250127-1 [77.4 kB]
  Fetched 7334 kB in 0s (58.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 ... 14164 files and directories currently installed.)
  Preparing to unpack .../libselinux1_3.7-3.1_arm64.deb ...
  Unpacking libselinux1:arm64 (3.7-3.1) over (3.7-3+b1) ...
  Setting up libselinux1:arm64 (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 ... 14163 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 ... 14163 files and directories currently installed.)
  Preparing to unpack .../libsemanage2_3.7-2.1_arm64.deb ...
  Unpacking libsemanage2:arm64 (3.7-2.1) over (3.7-2+b1) ...
  Setting up libsemanage2:arm64 (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 ... 14162 files and directories currently installed.)
  Preparing to unpack .../0-libgprofng0_2.43.90.20250127-1_arm64.deb ...
  Unpacking libgprofng0:arm64 (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../1-libctf0_2.43.90.20250127-1_arm64.deb ...
  Unpacking libctf0:arm64 (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../2-libctf-nobfd0_2.43.90.20250127-1_arm64.deb ...
  Unpacking libctf-nobfd0:arm64 (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../3-binutils-gold_2.43.90.20250127-1_arm64.deb ...
  Unpacking binutils-gold (2.43.90.20250127-1) over (2.43.90.20250121-2) ...
  Preparing to unpack .../4-binutils-gold-aarch64-linux-gnu_2.43.90.20250127-1_arm64.deb ...
  Unpacking binutils-gold-aarch64-linux-gnu (2.43.90.20250127-1) over (2.43.90.20250121-2) ...
  Preparing to unpack .../5-binutils-aarch64-linux-gnu_2.43.90.20250127-1_arm64.deb ...
  Unpacking binutils-aarch64-linux-gnu (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../6-libbinutils_2.43.90.20250127-1_arm64.deb ...
  Unpacking libbinutils:arm64 (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../7-binutils_2.43.90.20250127-1_arm64.deb ...
  Unpacking binutils (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../8-binutils-common_2.43.90.20250127-1_arm64.deb ...
  Unpacking binutils-common:arm64 (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Preparing to unpack .../9-libsframe1_2.43.90.20250127-1_arm64.deb ...
  Unpacking libsframe1:arm64 (2.43.90.20250127-1) over (2.43.90.20250122-2) ...
  Setting up binutils-common:arm64 (2.43.90.20250127-1) ...
  Setting up libctf-nobfd0:arm64 (2.43.90.20250127-1) ...
  Setting up binutils-gold-aarch64-linux-gnu (2.43.90.20250127-1) ...
  Setting up libsframe1:arm64 (2.43.90.20250127-1) ...
  Setting up libbinutils:arm64 (2.43.90.20250127-1) ...
  Setting up libctf0:arm64 (2.43.90.20250127-1) ...
  Setting up binutils-gold (2.43.90.20250127-1) ...
  Setting up binutils-aarch64-linux-gnu (2.43.90.20250127-1) ...
  Setting up libgprofng0:arm64 (2.43.90.20250127-1) ...
  Setting up binutils (2.43.90.20250127-1) ...
  Processing triggers for libc-bin (2.40-6) ...
0m10.1s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', '-yf', 'dist-upgrade']
0m10.1s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'sh', '-c', 'apt-cache dumpavail | md5sum']
0m10.4s DUMP: 
  15841811318246aa071289320adb62e3  -
0m10.4s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'sh', '-c', 'apt-cache dumpavail | md5sum']
0m10.4s INFO: Running scripts post_setup
0m10.4s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', 'clean']
0m10.5s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', 'clean']
0m10.5s DEBUG: Recording chroot state
0m10.6s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m10.6s 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-aarch64-linux-gnu	binutils-aarch64-linux-gnu	2.43.90.20250127-1
  install ok installed	binutils-common:arm64	binutils-common	2.43.90.20250127-1
  install ok installed	binutils-gold	binutils-gold	2.43.90.20250127-1
  install ok installed	binutils-gold-aarch64-linux-gnu	binutils-gold-aarch64-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+b1
  install ok installed	cpp	cpp	4:14.2.0-1
  install ok installed	cpp-14	cpp-14	14.2.0-14
  install ok installed	cpp-14-aarch64-linux-gnu	cpp-14-aarch64-linux-gnu	14.2.0-14
  install ok installed	cpp-aarch64-linux-gnu	cpp-aarch64-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-14
  install ok installed	g++-14-aarch64-linux-gnu	g++-14-aarch64-linux-gnu	14.2.0-14
  install ok installed	g++-aarch64-linux-gnu	g++-aarch64-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-14
  install ok installed	gcc-14-aarch64-linux-gnu	gcc-14-aarch64-linux-gnu	14.2.0-14
  install ok installed	gcc-14-base:arm64	gcc-14-base	14.2.0-14
  install ok installed	gcc-aarch64-linux-gnu	gcc-aarch64-linux-gnu	4:14.2.0-1
  install ok installed	grep	grep	3.11-4+b1
  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:arm64	libacl1	2.3.2-2+b1
  install ok installed	libapparmor1:arm64	libapparmor1	3.1.7-1+b3
  install ok installed	libapt-pkg6.0t64:arm64	libapt-pkg6.0t64	2.9.25
  install ok installed	libasan8:arm64	libasan8	14.2.0-14
  install ok installed	libatomic1:arm64	libatomic1	14.2.0-14
  install ok installed	libattr1:arm64	libattr1	1:2.5.2-2
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:arm64	libaudit1	1:4.0.2-2+b1
  install ok installed	libbinutils:arm64	libbinutils	2.43.90.20250127-1
  install ok installed	libblkid1:arm64	libblkid1	2.40.4-1
  install ok installed	libbsd0:arm64	libbsd0	0.12.2-2
  install ok installed	libbz2-1.0:arm64	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:arm64	libc6	2.40-6
  install ok installed	libc6-dev:arm64	libc6-dev	2.40-6
  install ok installed	libcap-ng0:arm64	libcap-ng0	0.8.5-4
  install ok installed	libcap2:arm64	libcap2	1:2.66-5+b1
  install ok installed	libcc1-0:arm64	libcc1-0	14.2.0-14
  install ok installed	libcom-err2:arm64	libcom-err2	1.47.2-1
  install ok installed	libcrypt-dev:arm64	libcrypt-dev	1:4.4.38-1
  install ok installed	libcrypt1:arm64	libcrypt1	1:4.4.38-1
  install ok installed	libctf-nobfd0:arm64	libctf-nobfd0	2.43.90.20250127-1
  install ok installed	libctf0:arm64	libctf0	2.43.90.20250127-1
  install ok installed	libdb5.3t64:arm64	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdbus-1-3:arm64	libdbus-1-3	1.16.0-1
  install ok installed	libdebconfclient0:arm64	libdebconfclient0	0.277
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.14
  install ok installed	libexpat1:arm64	libexpat1	2.6.4-1
  install ok installed	libext2fs2t64:arm64	libext2fs2t64	1.47.2-1
  install ok installed	libgcc-14-dev:arm64	libgcc-14-dev	14.2.0-14
  install ok installed	libgcc-s1:arm64	libgcc-s1	14.2.0-14
  install ok installed	libgdbm-compat4t64:arm64	libgdbm-compat4t64	1.24-2
  install ok installed	libgdbm6t64:arm64	libgdbm6t64	1.24-2
  install ok installed	libgmp10:arm64	libgmp10	2:6.3.0+dfsg-3
  install ok installed	libgomp1:arm64	libgomp1	14.2.0-14
  install ok installed	libgprofng0:arm64	libgprofng0	2.43.90.20250127-1
  install ok installed	libhogweed6t64:arm64	libhogweed6t64	3.10-1+b1
  install ok installed	libhwasan0:arm64	libhwasan0	14.2.0-14
  install ok installed	libisl23:arm64	libisl23	0.27-1
  install ok installed	libitm1:arm64	libitm1	14.2.0-14
  install ok installed	libjansson4:arm64	libjansson4	2.14-2+b3
  install ok installed	liblsan0:arm64	liblsan0	14.2.0-14
  install ok installed	liblz4-1:arm64	liblz4-1	1.10.0-3
  install ok installed	liblzma5:arm64	liblzma5	5.6.3-1+b1
  install ok installed	libmd0:arm64	libmd0	1.1.0-2+b1
  install ok installed	libmount1:arm64	libmount1	2.40.4-1
  install ok installed	libmpc3:arm64	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:arm64	libmpfr6	4.2.1-1+b2
  install ok installed	libnettle8t64:arm64	libnettle8t64	3.10-1+b1
  install ok installed	libpam-modules:arm64	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:arm64	libpam0g	1.5.3-7+b1
  install ok installed	libpcre2-8-0:arm64	libpcre2-8-0	10.44-5
  install ok installed	libperl5.40:arm64	libperl5.40	5.40.0-8
  install ok installed	libseccomp2:arm64	libseccomp2	2.5.5-2
  install ok installed	libselinux1:arm64	libselinux1	3.7-3.1
  install ok installed	libsemanage-common	libsemanage-common	3.7-2.1
  install ok installed	libsemanage2:arm64	libsemanage2	3.7-2.1
  install ok installed	libsepol2:arm64	libsepol2	3.7-1
  install ok installed	libsframe1:arm64	libsframe1	2.43.90.20250127-1
  install ok installed	libsmartcols1:arm64	libsmartcols1	2.40.4-1
  install ok installed	libss2:arm64	libss2	1.47.2-1
  install ok installed	libssl3t64:arm64	libssl3t64	3.4.0-2
  install ok installed	libstdc++-14-dev:arm64	libstdc++-14-dev	14.2.0-14
  install ok installed	libstdc++6:arm64	libstdc++6	14.2.0-14
  install ok installed	libsystemd-shared:arm64	libsystemd-shared	257.2-3
  install ok installed	libsystemd0:arm64	libsystemd0	257.2-3
  install ok installed	libtinfo6:arm64	libtinfo6	6.5-2+b1
  install ok installed	libtsan2:arm64	libtsan2	14.2.0-14
  install ok installed	libubsan1:arm64	libubsan1	14.2.0-14
  install ok installed	libudev1:arm64	libudev1	257.2-3
  install ok installed	libuuid1:arm64	libuuid1	2.40.4-1
  install ok installed	libxxhash0:arm64	libxxhash0	0.8.3-2
  install ok installed	libzstd1:arm64	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+b1
  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+b1
  install ok installed	sed	sed	4.9-2+b1
  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:arm64	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m10.6s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m10.6s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-divert', '--list']
0m10.6s DUMP: 
  diversion of /lib/aarch64-linux-gnu/libext2fs.so.2 to /lib/aarch64-linux-gnu/libext2fs.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/aarch64-linux-gnu/libe2p.so.2.3 to /lib/aarch64-linux-gnu/libe2p.so.2.3.usr-is-merged by libext2fs2t64
  diversion of /lib/aarch64-linux-gnu/libe2p.so.2 to /lib/aarch64-linux-gnu/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/aarch64-linux-gnu/libext2fs.so.2.4 to /lib/aarch64-linux-gnu/libext2fs.so.2.4.usr-is-merged by libext2fs2t64
  diversion of /lib/ld-linux-aarch64.so.1 to /lib/ld-linux-aarch64.so.1.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
0m10.6s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-divert', '--list']
0m10.6s INFO: Running scripts is_testable
0m10.6s INFO: apt-cache does not know about any of the requested packages
0m10.6s INFO: Running scripts pre_test
0m10.6s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m11.0s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m11.5s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m11.5s INFO: Running scripts pre_install
0m11.5s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m11.9s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m12.3s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m12.3s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m12.3s DUMP: 
  2.9.25
0m12.3s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m12.3s DEBUG: Copying /tmp/debusine-fetch-exec-upload-kzvyw9h8/chkrootkit-dbgsym_0.58b-4_arm64.deb, /tmp/debusine-fetch-exec-upload-kzvyw9h8/chkrootkit_0.58b-4_arm64.deb to /tmp/tmp1f9cl75e/tmp
0m12.4s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/chkrootkit-dbgsym_0.58b-4_arm64.deb', './tmp/chkrootkit_0.58b-4_arm64.deb']
0m14.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 chkrootkit-dbgsym
  0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
  Need to get 0 B/347 kB of archives.
  After this operation, 2075 kB of additional disk space will be used.
  Get:1 /tmp/chkrootkit_0.58b-4_arm64.deb chkrootkit arm64 0.58b-4 [275 kB]
  Get:2 /tmp/chkrootkit-dbgsym_0.58b-4_arm64.deb chkrootkit-dbgsym arm64 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 ... 14175 files and directories currently installed.)
  Preparing to unpack .../chkrootkit_0.58b-4_arm64.deb ...
  Unpacking chkrootkit (0.58b-4) ...
  Selecting previously unselected package chkrootkit-dbgsym.
  Preparing to unpack .../chkrootkit-dbgsym_0.58b-4_arm64.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) ...
0m14.9s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/chkrootkit-dbgsym_0.58b-4_arm64.deb', './tmp/chkrootkit_0.58b-4_arm64.deb']
0m14.9s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'chkrootkit-dbgsym', 'chkrootkit']
0m14.9s DUMP: 
  chkrootkit install ok installed
  chkrootkit-dbgsym install ok installed
0m14.9s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'chkrootkit-dbgsym', 'chkrootkit']
0m14.9s INFO: Installation of ['./tmp/chkrootkit-dbgsym_0.58b-4_arm64.deb', './tmp/chkrootkit_0.58b-4_arm64.deb'] ok
0m14.9s DEBUG: Removing /tmp/tmp1f9cl75e/./tmp/chkrootkit-dbgsym_0.58b-4_arm64.deb
0m14.9s DEBUG: Removing /tmp/tmp1f9cl75e/./tmp/chkrootkit_0.58b-4_arm64.deb
0m14.9s INFO: Running scripts post_install
0m14.9s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m15.3s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m15.8s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m16.1s DEBUG: Starting command: ['debsums', '--root', '/tmp/tmp1f9cl75e', '-ac', '--ignore-obsolete']
0m17.7s DEBUG: Command ok: ['debsums', '--root', '/tmp/tmp1f9cl75e', '-ac', '--ignore-obsolete']
0m17.7s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m17.7s DUMP: 
  0.17.5
0m17.7s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m17.7s INFO: Running adequate version 0.17.5 now.
0m17.7s DEBUG: Starting command: ['adequate', '--root', '/tmp/tmp1f9cl75e', 'chkrootkit-dbgsym', 'chkrootkit']
0m17.8s DEBUG: Command ok: ['adequate', '--root', '/tmp/tmp1f9cl75e', 'chkrootkit-dbgsym', 'chkrootkit']
0m17.8s INFO: Running scripts pre_remove
0m17.8s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m17.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-aarch64-linux-gnu	binutils-aarch64-linux-gnu	2.43.90.20250127-1
  install ok installed	binutils-common:arm64	binutils-common	2.43.90.20250127-1
  install ok installed	binutils-gold	binutils-gold	2.43.90.20250127-1
  install ok installed	binutils-gold-aarch64-linux-gnu	binutils-gold-aarch64-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+b1
  install ok installed	cpp	cpp	4:14.2.0-1
  install ok installed	cpp-14	cpp-14	14.2.0-14
  install ok installed	cpp-14-aarch64-linux-gnu	cpp-14-aarch64-linux-gnu	14.2.0-14
  install ok installed	cpp-aarch64-linux-gnu	cpp-aarch64-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-14
  install ok installed	g++-14-aarch64-linux-gnu	g++-14-aarch64-linux-gnu	14.2.0-14
  install ok installed	g++-aarch64-linux-gnu	g++-aarch64-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-14
  install ok installed	gcc-14-aarch64-linux-gnu	gcc-14-aarch64-linux-gnu	14.2.0-14
  install ok installed	gcc-14-base:arm64	gcc-14-base	14.2.0-14
  install ok installed	gcc-aarch64-linux-gnu	gcc-aarch64-linux-gnu	4:14.2.0-1
  install ok installed	grep	grep	3.11-4+b1
  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:arm64	libacl1	2.3.2-2+b1
  install ok installed	libapparmor1:arm64	libapparmor1	3.1.7-1+b3
  install ok installed	libapt-pkg6.0t64:arm64	libapt-pkg6.0t64	2.9.25
  install ok installed	libasan8:arm64	libasan8	14.2.0-14
  install ok installed	libatomic1:arm64	libatomic1	14.2.0-14
  install ok installed	libattr1:arm64	libattr1	1:2.5.2-2
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:arm64	libaudit1	1:4.0.2-2+b1
  install ok installed	libbinutils:arm64	libbinutils	2.43.90.20250127-1
  install ok installed	libblkid1:arm64	libblkid1	2.40.4-1
  install ok installed	libbsd0:arm64	libbsd0	0.12.2-2
  install ok installed	libbz2-1.0:arm64	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:arm64	libc6	2.40-6
  install ok installed	libc6-dev:arm64	libc6-dev	2.40-6
  install ok installed	libcap-ng0:arm64	libcap-ng0	0.8.5-4
  install ok installed	libcap2:arm64	libcap2	1:2.66-5+b1
  install ok installed	libcc1-0:arm64	libcc1-0	14.2.0-14
  install ok installed	libcom-err2:arm64	libcom-err2	1.47.2-1
  install ok installed	libcrypt-dev:arm64	libcrypt-dev	1:4.4.38-1
  install ok installed	libcrypt1:arm64	libcrypt1	1:4.4.38-1
  install ok installed	libctf-nobfd0:arm64	libctf-nobfd0	2.43.90.20250127-1
  install ok installed	libctf0:arm64	libctf0	2.43.90.20250127-1
  install ok installed	libdb5.3t64:arm64	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdbus-1-3:arm64	libdbus-1-3	1.16.0-1
  install ok installed	libdebconfclient0:arm64	libdebconfclient0	0.277
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.14
  install ok installed	libexpat1:arm64	libexpat1	2.6.4-1
  install ok installed	libext2fs2t64:arm64	libext2fs2t64	1.47.2-1
  install ok installed	libgcc-14-dev:arm64	libgcc-14-dev	14.2.0-14
  install ok installed	libgcc-s1:arm64	libgcc-s1	14.2.0-14
  install ok installed	libgdbm-compat4t64:arm64	libgdbm-compat4t64	1.24-2
  install ok installed	libgdbm6t64:arm64	libgdbm6t64	1.24-2
  install ok installed	libgmp10:arm64	libgmp10	2:6.3.0+dfsg-3
  install ok installed	libgomp1:arm64	libgomp1	14.2.0-14
  install ok installed	libgprofng0:arm64	libgprofng0	2.43.90.20250127-1
  install ok installed	libhogweed6t64:arm64	libhogweed6t64	3.10-1+b1
  install ok installed	libhwasan0:arm64	libhwasan0	14.2.0-14
  install ok installed	libisl23:arm64	libisl23	0.27-1
  install ok installed	libitm1:arm64	libitm1	14.2.0-14
  install ok installed	libjansson4:arm64	libjansson4	2.14-2+b3
  install ok installed	liblsan0:arm64	liblsan0	14.2.0-14
  install ok installed	liblz4-1:arm64	liblz4-1	1.10.0-3
  install ok installed	liblzma5:arm64	liblzma5	5.6.3-1+b1
  install ok installed	libmd0:arm64	libmd0	1.1.0-2+b1
  install ok installed	libmount1:arm64	libmount1	2.40.4-1
  install ok installed	libmpc3:arm64	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:arm64	libmpfr6	4.2.1-1+b2
  install ok installed	libnettle8t64:arm64	libnettle8t64	3.10-1+b1
  install ok installed	libpam-modules:arm64	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:arm64	libpam0g	1.5.3-7+b1
  install ok installed	libpcre2-8-0:arm64	libpcre2-8-0	10.44-5
  install ok installed	libperl5.40:arm64	libperl5.40	5.40.0-8
  install ok installed	libseccomp2:arm64	libseccomp2	2.5.5-2
  install ok installed	libselinux1:arm64	libselinux1	3.7-3.1
  install ok installed	libsemanage-common	libsemanage-common	3.7-2.1
  install ok installed	libsemanage2:arm64	libsemanage2	3.7-2.1
  install ok installed	libsepol2:arm64	libsepol2	3.7-1
  install ok installed	libsframe1:arm64	libsframe1	2.43.90.20250127-1
  install ok installed	libsmartcols1:arm64	libsmartcols1	2.40.4-1
  install ok installed	libss2:arm64	libss2	1.47.2-1
  install ok installed	libssl3t64:arm64	libssl3t64	3.4.0-2
  install ok installed	libstdc++-14-dev:arm64	libstdc++-14-dev	14.2.0-14
  install ok installed	libstdc++6:arm64	libstdc++6	14.2.0-14
  install ok installed	libsystemd-shared:arm64	libsystemd-shared	257.2-3
  install ok installed	libsystemd0:arm64	libsystemd0	257.2-3
  install ok installed	libtinfo6:arm64	libtinfo6	6.5-2+b1
  install ok installed	libtsan2:arm64	libtsan2	14.2.0-14
  install ok installed	libubsan1:arm64	libubsan1	14.2.0-14
  install ok installed	libudev1:arm64	libudev1	257.2-3
  install ok installed	libuuid1:arm64	libuuid1	2.40.4-1
  install ok installed	libxxhash0:arm64	libxxhash0	0.8.3-2
  install ok installed	libzstd1:arm64	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+b1
  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+b1
  install ok installed	sed	sed	4.9-2+b1
  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:arm64	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m17.8s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m17.8s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', 'remove', 'chkrootkit', 'chkrootkit-dbgsym']
0m18.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, 2075 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 ... 14233 files and directories currently installed.)
  Removing chkrootkit-dbgsym (0.58b-4) ...
  Removing chkrootkit (0.58b-4) ...
0m18.9s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', 'remove', 'chkrootkit', 'chkrootkit-dbgsym']
0m18.9s INFO: Running scripts post_remove
0m18.9s INFO: Package chkrootkit contains cron file: /etc/cron.daily/chkrootkit
0m18.9s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', '/etc/cron.daily/chkrootkit']
0m18.9s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', '/etc/cron.daily/chkrootkit']
0m18.9s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg', '--purge', 'chkrootkit', 'chkrootkit-dbgsym']
0m19.0s DUMP: 
  (Reading database ... 14179 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.0s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg', '--purge', 'chkrootkit', 'chkrootkit-dbgsym']
0m19.0s INFO: Running scripts post_purge
0m19.0s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg', '--purge', '--pending']
0m19.1s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg', '--purge', '--pending']
0m19.1s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg', '--remove', '--pending']
0m19.1s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg', '--remove', '--pending']
0m19.1s INFO: Running scripts post_test
0m19.1s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m19.4s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m19.9s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m19.9s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-divert', '--list']
0m19.9s DUMP: 
  diversion of /lib/aarch64-linux-gnu/libext2fs.so.2 to /lib/aarch64-linux-gnu/libext2fs.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/aarch64-linux-gnu/libe2p.so.2.3 to /lib/aarch64-linux-gnu/libe2p.so.2.3.usr-is-merged by libext2fs2t64
  diversion of /lib/aarch64-linux-gnu/libe2p.so.2 to /lib/aarch64-linux-gnu/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/aarch64-linux-gnu/libext2fs.so.2.4 to /lib/aarch64-linux-gnu/libext2fs.so.2.4.usr-is-merged by libext2fs2t64
  diversion of /lib/ld-linux-aarch64.so.1 to /lib/ld-linux-aarch64.so.1.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
0m19.9s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-divert', '--list']
0m19.9s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', 'clean']
0m20.0s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', 'clean']
0m20.0s DEBUG: Recording chroot state
0m20.3s INFO: PASS: Installation and purging test.
0m20.3s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-cache', 'show', '--no-all-versions', 'chkrootkit-dbgsym']
0m21.3s DUMP: 
  E: No packages found
0m21.3s DEBUG: Command failed (status=100), but ignoring error: ['chroot', '/tmp/tmp1f9cl75e', 'apt-cache', 'show', '--no-all-versions', 'chkrootkit-dbgsym']
0m21.3s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-cache', 'show', '--no-all-versions', 'chkrootkit']
0m21.5s DUMP: 
  Package: chkrootkit
  Source: chkrootkit (0.58b-3)
  Version: 0.58b-3+b1
  Installed-Size: 1218
  Maintainer: Debian Security Tools <team+pkg-security@tracker.debian.org>
  Architecture: arm64
  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_arm64.deb
  Size: 273032
  MD5sum: b71007c307e747462f3431af1faa20ba
  SHA256: 5d0cec2ec8a5bd7afc3af33f6b57d34d886470a2da38e31198b675aa4d8eac8e
0m21.5s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-cache', 'show', '--no-all-versions', 'chkrootkit']
0m21.5s INFO: apt-cache knows about the following packages: chkrootkit
0m21.5s INFO: the following packages are not in the archive: chkrootkit-dbgsym
0m21.5s INFO: Running scripts pre_test
0m21.5s INFO: Running scripts pre_install
0m21.5s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-cache', 'policy']
0m21.6s DUMP: 
  Package files:
   100 /var/lib/dpkg/status
       release a=now
   500 http://deb.debian.org/debian sid/main arm64 Packages
       release o=Debian,a=unstable,n=sid,l=Debian,c=main,b=arm64
       origin deb.debian.org
  Pinned packages:
0m21.6s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-cache', 'policy']
0m21.6s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-cache', 'policy', 'chkrootkit']
0m21.6s DUMP: 
  chkrootkit:
    Installed: (none)
    Candidate: 0.58b-3+b1
    Version table:
       0.58b-3+b1 500
          500 http://deb.debian.org/debian sid/main arm64 Packages
0m21.6s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-cache', 'policy', 'chkrootkit']
0m21.6s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', '-y', 'install', 'chkrootkit']
0m23.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
  0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  Need to get 273 kB of archives.
  After this operation, 1247 kB of additional disk space will be used.
  Get:1 http://deb.debian.org/debian sid/main arm64 chkrootkit arm64 0.58b-3+b1 [273 kB]
  Fetched 273 kB in 0s (5611 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 ... 14175 files and directories currently installed.)
  Preparing to unpack .../chkrootkit_0.58b-3+b1_arm64.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'.
0m23.2s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', '-y', 'install', 'chkrootkit']
0m23.2s INFO: Running scripts post_install
0m23.2s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m23.6s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m24.1s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m24.1s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m24.1s DUMP: 
  2.9.25
0m24.1s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m24.1s DEBUG: Copying /tmp/debusine-fetch-exec-upload-kzvyw9h8/chkrootkit-dbgsym_0.58b-4_arm64.deb, /tmp/debusine-fetch-exec-upload-kzvyw9h8/chkrootkit_0.58b-4_arm64.deb to /tmp/tmp1f9cl75e/tmp
0m24.1s INFO: Running scripts pre_install
0m24.1s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/chkrootkit-dbgsym_0.58b-4_arm64.deb', './tmp/chkrootkit_0.58b-4_arm64.deb']
0m25.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/347 kB of archives.
  After this operation, 827 kB of additional disk space will be used.
  Get:1 /tmp/chkrootkit_0.58b-4_arm64.deb chkrootkit arm64 0.58b-4 [275 kB]
  Get:2 /tmp/chkrootkit-dbgsym_0.58b-4_arm64.deb chkrootkit-dbgsym arm64 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 ... 14212 files and directories currently installed.)
  Preparing to unpack .../chkrootkit_0.58b-4_arm64.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_arm64.deb ...
  Unpacking chkrootkit-dbgsym (0.58b-4) ...
  Setting up chkrootkit (0.58b-4) ...
  Setting up chkrootkit-dbgsym (0.58b-4) ...
0m25.7s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/chkrootkit-dbgsym_0.58b-4_arm64.deb', './tmp/chkrootkit_0.58b-4_arm64.deb']
0m25.7s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'chkrootkit-dbgsym', 'chkrootkit']
0m25.8s DUMP: 
  chkrootkit install ok installed
  chkrootkit-dbgsym install ok installed
0m25.8s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'chkrootkit-dbgsym', 'chkrootkit']
0m25.8s INFO: Installation of ['./tmp/chkrootkit-dbgsym_0.58b-4_arm64.deb', './tmp/chkrootkit_0.58b-4_arm64.deb'] ok
0m25.8s INFO: Running scripts post_install
0m25.8s DEBUG: Removing /tmp/tmp1f9cl75e/./tmp/chkrootkit-dbgsym_0.58b-4_arm64.deb
0m25.8s DEBUG: Removing /tmp/tmp1f9cl75e/./tmp/chkrootkit_0.58b-4_arm64.deb
0m25.8s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m26.1s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m26.7s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m27.0s DEBUG: Starting command: ['debsums', '--root', '/tmp/tmp1f9cl75e', '-ac', '--ignore-obsolete']
0m28.6s DEBUG: Command ok: ['debsums', '--root', '/tmp/tmp1f9cl75e', '-ac', '--ignore-obsolete']
0m28.6s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m28.6s DUMP: 
  0.17.5
0m28.6s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m28.6s INFO: Running adequate version 0.17.5 now.
0m28.6s DEBUG: Starting command: ['adequate', '--root', '/tmp/tmp1f9cl75e', 'chkrootkit-dbgsym', 'chkrootkit']
0m28.6s DEBUG: Command ok: ['adequate', '--root', '/tmp/tmp1f9cl75e', 'chkrootkit-dbgsym', 'chkrootkit']
0m28.6s INFO: Running scripts pre_remove
0m28.6s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m28.6s 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-aarch64-linux-gnu	binutils-aarch64-linux-gnu	2.43.90.20250127-1
  install ok installed	binutils-common:arm64	binutils-common	2.43.90.20250127-1
  install ok installed	binutils-gold	binutils-gold	2.43.90.20250127-1
  install ok installed	binutils-gold-aarch64-linux-gnu	binutils-gold-aarch64-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+b1
  install ok installed	cpp	cpp	4:14.2.0-1
  install ok installed	cpp-14	cpp-14	14.2.0-14
  install ok installed	cpp-14-aarch64-linux-gnu	cpp-14-aarch64-linux-gnu	14.2.0-14
  install ok installed	cpp-aarch64-linux-gnu	cpp-aarch64-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-14
  install ok installed	g++-14-aarch64-linux-gnu	g++-14-aarch64-linux-gnu	14.2.0-14
  install ok installed	g++-aarch64-linux-gnu	g++-aarch64-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-14
  install ok installed	gcc-14-aarch64-linux-gnu	gcc-14-aarch64-linux-gnu	14.2.0-14
  install ok installed	gcc-14-base:arm64	gcc-14-base	14.2.0-14
  install ok installed	gcc-aarch64-linux-gnu	gcc-aarch64-linux-gnu	4:14.2.0-1
  install ok installed	grep	grep	3.11-4+b1
  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:arm64	libacl1	2.3.2-2+b1
  install ok installed	libapparmor1:arm64	libapparmor1	3.1.7-1+b3
  install ok installed	libapt-pkg6.0t64:arm64	libapt-pkg6.0t64	2.9.25
  install ok installed	libasan8:arm64	libasan8	14.2.0-14
  install ok installed	libatomic1:arm64	libatomic1	14.2.0-14
  install ok installed	libattr1:arm64	libattr1	1:2.5.2-2
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:arm64	libaudit1	1:4.0.2-2+b1
  install ok installed	libbinutils:arm64	libbinutils	2.43.90.20250127-1
  install ok installed	libblkid1:arm64	libblkid1	2.40.4-1
  install ok installed	libbsd0:arm64	libbsd0	0.12.2-2
  install ok installed	libbz2-1.0:arm64	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:arm64	libc6	2.40-6
  install ok installed	libc6-dev:arm64	libc6-dev	2.40-6
  install ok installed	libcap-ng0:arm64	libcap-ng0	0.8.5-4
  install ok installed	libcap2:arm64	libcap2	1:2.66-5+b1
  install ok installed	libcc1-0:arm64	libcc1-0	14.2.0-14
  install ok installed	libcom-err2:arm64	libcom-err2	1.47.2-1
  install ok installed	libcrypt-dev:arm64	libcrypt-dev	1:4.4.38-1
  install ok installed	libcrypt1:arm64	libcrypt1	1:4.4.38-1
  install ok installed	libctf-nobfd0:arm64	libctf-nobfd0	2.43.90.20250127-1
  install ok installed	libctf0:arm64	libctf0	2.43.90.20250127-1
  install ok installed	libdb5.3t64:arm64	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdbus-1-3:arm64	libdbus-1-3	1.16.0-1
  install ok installed	libdebconfclient0:arm64	libdebconfclient0	0.277
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.14
  install ok installed	libexpat1:arm64	libexpat1	2.6.4-1
  install ok installed	libext2fs2t64:arm64	libext2fs2t64	1.47.2-1
  install ok installed	libgcc-14-dev:arm64	libgcc-14-dev	14.2.0-14
  install ok installed	libgcc-s1:arm64	libgcc-s1	14.2.0-14
  install ok installed	libgdbm-compat4t64:arm64	libgdbm-compat4t64	1.24-2
  install ok installed	libgdbm6t64:arm64	libgdbm6t64	1.24-2
  install ok installed	libgmp10:arm64	libgmp10	2:6.3.0+dfsg-3
  install ok installed	libgomp1:arm64	libgomp1	14.2.0-14
  install ok installed	libgprofng0:arm64	libgprofng0	2.43.90.20250127-1
  install ok installed	libhogweed6t64:arm64	libhogweed6t64	3.10-1+b1
  install ok installed	libhwasan0:arm64	libhwasan0	14.2.0-14
  install ok installed	libisl23:arm64	libisl23	0.27-1
  install ok installed	libitm1:arm64	libitm1	14.2.0-14
  install ok installed	libjansson4:arm64	libjansson4	2.14-2+b3
  install ok installed	liblsan0:arm64	liblsan0	14.2.0-14
  install ok installed	liblz4-1:arm64	liblz4-1	1.10.0-3
  install ok installed	liblzma5:arm64	liblzma5	5.6.3-1+b1
  install ok installed	libmd0:arm64	libmd0	1.1.0-2+b1
  install ok installed	libmount1:arm64	libmount1	2.40.4-1
  install ok installed	libmpc3:arm64	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:arm64	libmpfr6	4.2.1-1+b2
  install ok installed	libnettle8t64:arm64	libnettle8t64	3.10-1+b1
  install ok installed	libpam-modules:arm64	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:arm64	libpam0g	1.5.3-7+b1
  install ok installed	libpcre2-8-0:arm64	libpcre2-8-0	10.44-5
  install ok installed	libperl5.40:arm64	libperl5.40	5.40.0-8
  install ok installed	libseccomp2:arm64	libseccomp2	2.5.5-2
  install ok installed	libselinux1:arm64	libselinux1	3.7-3.1
  install ok installed	libsemanage-common	libsemanage-common	3.7-2.1
  install ok installed	libsemanage2:arm64	libsemanage2	3.7-2.1
  install ok installed	libsepol2:arm64	libsepol2	3.7-1
  install ok installed	libsframe1:arm64	libsframe1	2.43.90.20250127-1
  install ok installed	libsmartcols1:arm64	libsmartcols1	2.40.4-1
  install ok installed	libss2:arm64	libss2	1.47.2-1
  install ok installed	libssl3t64:arm64	libssl3t64	3.4.0-2
  install ok installed	libstdc++-14-dev:arm64	libstdc++-14-dev	14.2.0-14
  install ok installed	libstdc++6:arm64	libstdc++6	14.2.0-14
  install ok installed	libsystemd-shared:arm64	libsystemd-shared	257.2-3
  install ok installed	libsystemd0:arm64	libsystemd0	257.2-3
  install ok installed	libtinfo6:arm64	libtinfo6	6.5-2+b1
  install ok installed	libtsan2:arm64	libtsan2	14.2.0-14
  install ok installed	libubsan1:arm64	libubsan1	14.2.0-14
  install ok installed	libudev1:arm64	libudev1	257.2-3
  install ok installed	libuuid1:arm64	libuuid1	2.40.4-1
  install ok installed	libxxhash0:arm64	libxxhash0	0.8.3-2
  install ok installed	libzstd1:arm64	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+b1
  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+b1
  install ok installed	sed	sed	4.9-2+b1
  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:arm64	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m28.6s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m28.6s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', 'remove', 'chkrootkit', 'chkrootkit-dbgsym']
0m29.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, 2075 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 ... 14233 files and directories currently installed.)
  Removing chkrootkit-dbgsym (0.58b-4) ...
  Removing chkrootkit (0.58b-4) ...
0m29.8s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', 'remove', 'chkrootkit', 'chkrootkit-dbgsym']
0m29.8s INFO: Running scripts post_remove
0m29.8s INFO: Package chkrootkit contains cron file: /etc/cron.daily/chkrootkit
0m29.8s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', '/etc/cron.daily/chkrootkit']
0m29.8s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', '/etc/cron.daily/chkrootkit']
0m29.8s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg', '--purge', 'chkrootkit', 'chkrootkit-dbgsym']
0m29.9s DUMP: 
  (Reading database ... 14179 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
0m29.9s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg', '--purge', 'chkrootkit', 'chkrootkit-dbgsym']
0m29.9s INFO: Running scripts post_purge
0m29.9s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg', '--purge', '--pending']
0m30.0s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg', '--purge', '--pending']
0m30.0s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg', '--remove', '--pending']
0m30.0s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg', '--remove', '--pending']
0m30.0s INFO: Running scripts post_test
0m30.0s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m30.4s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp1f9cl75e']
0m30.9s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m30.9s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-divert', '--list']
0m30.9s DUMP: 
  diversion of /lib/aarch64-linux-gnu/libext2fs.so.2 to /lib/aarch64-linux-gnu/libext2fs.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/aarch64-linux-gnu/libe2p.so.2.3 to /lib/aarch64-linux-gnu/libe2p.so.2.3.usr-is-merged by libext2fs2t64
  diversion of /lib/aarch64-linux-gnu/libe2p.so.2 to /lib/aarch64-linux-gnu/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/aarch64-linux-gnu/libext2fs.so.2.4 to /lib/aarch64-linux-gnu/libext2fs.so.2.4.usr-is-merged by libext2fs2t64
  diversion of /lib/ld-linux-aarch64.so.1 to /lib/ld-linux-aarch64.so.1.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
0m30.9s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'dpkg-divert', '--list']
0m30.9s DEBUG: Starting command: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', 'clean']
0m31.0s DEBUG: Command ok: ['chroot', '/tmp/tmp1f9cl75e', 'apt-get', 'clean']
0m31.0s DEBUG: Recording chroot state
0m31.3s INFO: PASS: Installation, upgrade and purging tests.
0m31.6s DEBUG: Starting command: ['umount', '/tmp/tmp1f9cl75e/dev/tty']
0m31.6s DEBUG: Command ok: ['umount', '/tmp/tmp1f9cl75e/dev/tty']
0m31.6s DEBUG: Starting command: ['umount', '/tmp/tmp1f9cl75e/dev/urandom']
0m31.6s DEBUG: Command ok: ['umount', '/tmp/tmp1f9cl75e/dev/urandom']
0m31.6s DEBUG: Starting command: ['umount', '/tmp/tmp1f9cl75e/dev/random']
0m31.6s DEBUG: Command ok: ['umount', '/tmp/tmp1f9cl75e/dev/random']
0m31.6s DEBUG: Starting command: ['umount', '/tmp/tmp1f9cl75e/dev/full']
0m31.6s DEBUG: Command ok: ['umount', '/tmp/tmp1f9cl75e/dev/full']
0m31.6s DEBUG: Starting command: ['umount', '/tmp/tmp1f9cl75e/dev/zero']
0m31.6s DEBUG: Command ok: ['umount', '/tmp/tmp1f9cl75e/dev/zero']
0m31.6s DEBUG: Starting command: ['umount', '/tmp/tmp1f9cl75e/dev/null']
0m31.6s DEBUG: Command ok: ['umount', '/tmp/tmp1f9cl75e/dev/null']
0m31.6s DEBUG: Starting command: ['umount', '/tmp/tmp1f9cl75e/dev/shm']
0m31.6s DEBUG: Command ok: ['umount', '/tmp/tmp1f9cl75e/dev/shm']
0m31.6s DEBUG: Starting command: ['umount', '/tmp/tmp1f9cl75e/dev/pts']
0m31.7s DEBUG: Command ok: ['umount', '/tmp/tmp1f9cl75e/dev/pts']
0m31.7s DEBUG: Starting command: ['umount', '/tmp/tmp1f9cl75e/proc']
0m31.7s DEBUG: Command ok: ['umount', '/tmp/tmp1f9cl75e/proc']
0m31.7s DEBUG: Starting command: ['rm', '-rf', '--one-file-system', '/tmp/tmp1f9cl75e']
0m32.0s DEBUG: Command ok: ['rm', '-rf', '--one-file-system', '/tmp/tmp1f9cl75e']
0m32.0s DEBUG: Removed directory tree at /tmp/tmp1f9cl75e
0m32.0s INFO: PASS: All tests.
0m32.0s INFO: piuparts run ends.

Files in working directory:

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