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
|
#
# 2015-05-14
#
# why remove systemd over postrm
#
##########
$ apt-cache policy piuparts
piuparts:
Installiert: 0.63
Installationskandidat: 0.63
Versionstabelle:
*** 0.63 0
900 http://mirror.1und1.de/debian/ stretch/main amd64 Packages
800 http://mirror.1und1.de/debian/ sid/main amd64 Packages
100 /var/lib/dpkg/status
##########
$ apt-cache policy systemd
systemd:
Installiert: 215-17
Installationskandidat: 215-17
Versionstabelle:
219-9 0
1 http://mirror.1und1.de/debian/ experimental/main amd64 Packages
*** 215-17 0
900 http://mirror.1und1.de/debian/ stretch/main amd64 Packages
800 http://mirror.1und1.de/debian/ sid/main amd64 Packages
100 /var/lib/dpkg/status
##########
log piuparts:
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 0.63 starting up.
0m0.0s INFO: Command line arguments: /usr/sbin/piuparts --basetgz=../../sid-amd64-base.tgz bitz-server_0.1.6-1_amd64.changes
0m0.0s INFO: Running on: Linux merkur 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt9-3 (2015-04-23) x86_64
0m0.0s DEBUG: Starting command: ['dpkg', '--info', 'bitz-server_0.1.6-1_amd64.deb']
0m0.0s DUMP:
new debian package, version 2.0.
size 51096 bytes: control archive=2115 bytes.
78 bytes, 3 lines conffiles
1144 bytes, 23 lines control
643 bytes, 9 lines md5sums
867 bytes, 23 lines * postinst #!/bin/sh
1373 bytes, 47 lines * postrm #!/bin/sh
177 bytes, 7 lines * prerm #!/bin/sh
Package: bitz-server
Version: 0.1.6-1
Architecture: amd64
Maintainer: Jörg Frings-Fürst <debian@jff-webhosting.net>
Installed-Size: 137
Depends: libc6 (>= 2.15), libconfig++9, libgcc1 (>= 1:4.1.1), libicap0 (= 0.1.6-1), liblog4cpp5, libstdc++6 (>= 4.9), init-system-helpers (>= 1.18~)
Section: net
Priority: extra
Homepage: https://github.com/uditha-atukorala/bitz-server
Description: ICAP server (RFC 3507) implementation in C++
The main goal of this project is to create an ICAP server (RFC 3507)
implementation in C++ to use the power of object oriented programming.
.
Starting from scratch, the server is developed with a modular architecture
in mind. The server core (written in C++) will handle the client requests,
manage workers (child processes) etc. and will provide basic handlers to serve
ICAP requests.
.
To extend this core functionality the idea is to have pluggable modules
(like Apache server modules). These modules will provide features like
content filtering, anti-virus scanning etc. and to make it easier to write
(and faster to implement) such modules there is hope to exploit Python
programming language.
0m0.0s DEBUG: Command ok: ['dpkg', '--info', 'bitz-server_0.1.6-1_amd64.deb']
0m0.0s DEBUG: Starting command: ['dpkg', '--info', 'bitz-server-doc_0.1.6-1_all.deb']
0m0.0s DUMP:
new debian package, version 2.0.
size 150870 bytes: control archive=9598 bytes.
1076 bytes, 25 lines control
28315 bytes, 292 lines md5sums
Package: bitz-server-doc
Source: bitz-server
Version: 0.1.6-1
Architecture: all
Maintainer: Jörg Frings-Fürst <debian@jff-webhosting.net>
Installed-Size: 1657
Section: doc
Priority: extra
Homepage: https://github.com/uditha-atukorala/bitz-server
Description: ICAP server (RFC 3507) implementation in C++ (Documentation)
The main goal of this project is to create an ICAP server (RFC 3507)
implementation in C++ to use the power of object oriented programming.
.
Starting from scratch, the server is developed with a modular architecture
in mind. The server core (written in C++) will handle the client requests,
manage workers (child processes) etc. and will provide basic handlers to serve
ICAP requests.
.
To extend this core functionality the idea is to have pluggable modules
(like Apache server modules). These modules will provide features like
content filtering, anti-virus scanning etc. and to make it easier to write
(and faster to implement) such modules there is hope to exploit Python
programming language.
.
This package holds the documentation.
0m0.0s DEBUG: Command ok: ['dpkg', '--info', 'bitz-server-doc_0.1.6-1_all.deb']
0m0.0s DEBUG: Starting command: ['dpkg', '--info', 'libicap-dev_0.1.6-1_amd64.deb']
0m0.0s DUMP:
new debian package, version 2.0.
size 10410 bytes: control archive=1342 bytes.
1158 bytes, 28 lines control
937 bytes, 14 lines md5sums
Package: libicap-dev
Source: bitz-server
Version: 0.1.6-1
Architecture: amd64
Maintainer: Jörg Frings-Fürst <debian@jff-webhosting.net>
Installed-Size: 33
Depends: libicap0 (= 0.1.6-1)
Suggests: bitz-server-doc
Section: libdevel
Priority: extra
Multi-Arch: same
Homepage: https://github.com/uditha-atukorala/bitz-server
Description: ICAP server (RFC 3507) implementation in C++ (development files)
The main goal of this project is to create an ICAP server (RFC 3507)
implementation in C++ to use the power of object oriented programming.
.
Starting from scratch, the server is developed with a modular architecture
in mind. The server core (written in C++) will handle the client requests,
manage workers (child processes) etc. and will provide basic handlers to serve
ICAP requests.
.
To extend this core functionality the idea is to have pluggable modules
(like Apache server modules). These modules will provide features like
content filtering, anti-virus scanning etc. and to make it easier to write
(and faster to implement) such modules there is hope to exploit Python
programming language.
.
This package holds the development files.
0m0.0s DEBUG: Command ok: ['dpkg', '--info', 'libicap-dev_0.1.6-1_amd64.deb']
0m0.0s DEBUG: Starting command: ['dpkg', '--info', 'libicap0_0.1.6-1_amd64.deb']
0m0.1s DUMP:
new debian package, version 2.0.
size 46194 bytes: control archive=3642 bytes.
1155 bytes, 27 lines control
360 bytes, 5 lines md5sums
135 bytes, 7 lines * postinst #!/bin/sh
132 bytes, 7 lines * postrm #!/bin/sh
19 bytes, 1 lines shlibs
12433 bytes, 203 lines symbols
Package: libicap0
Source: bitz-server
Version: 0.1.6-1
Architecture: amd64
Maintainer: Jörg Frings-Fürst <debian@jff-webhosting.net>
Installed-Size: 138
Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.9)
Section: net
Priority: extra
Multi-Arch: same
Homepage: https://github.com/uditha-atukorala/bitz-server
Description: ICAP server (RFC 3507) implementation in C++ (library files)
The main goal of this project is to create an ICAP server (RFC 3507)
implementation in C++ to use the power of object oriented programming.
.
Starting from scratch, the server is developed with a modular architecture
in mind. The server core (written in C++) will handle the client requests,
manage workers (child processes) etc. and will provide basic handlers to serve
ICAP requests.
.
To extend this core functionality the idea is to have pluggable modules
(like Apache server modules). These modules will provide features like
content filtering, anti-virus scanning etc. and to make it easier to write
(and faster to implement) such modules there is hope to exploit Python
programming language.
.
This package holds the library files.
0m0.1s DEBUG: Command ok: ['dpkg', '--info', 'libicap0_0.1.6-1_amd64.deb']
0m0.1s DEBUG: Starting command: ['dpkg', '--info', 'bitz-server-dbg_0.1.6-1_amd64.deb']
0m0.1s DUMP:
new debian package, version 2.0.
size 299412 bytes: control archive=1047 bytes.
1135 bytes, 26 lines control
341 bytes, 4 lines md5sums
Package: bitz-server-dbg
Source: bitz-server
Version: 0.1.6-1
Architecture: amd64
Maintainer: Jörg Frings-Fürst <debian@jff-webhosting.net>
Installed-Size: 319
Depends: bitz-server (= 0.1.6-1)
Section: debug
Priority: extra
Homepage: https://github.com/uditha-atukorala/bitz-server
Description: ICAP server (RFC 3507) implementation in C++ (server debug symbols)
The main goal of this project is to create an ICAP server (RFC 3507)
implementation in C++ to use the power of object oriented programming.
.
Starting from scratch, the server is developed with a modular architecture
in mind. The server core (written in C++) will handle the client requests,
manage workers (child processes) etc. and will provide basic handlers to serve
ICAP requests.
.
To extend this core functionality the idea is to have pluggable modules
(like Apache server modules). These modules will provide features like
content filtering, anti-virus scanning etc. and to make it easier to write
(and faster to implement) such modules there is hope to exploit Python
programming language.
.
This package holds the debug symbols for bitz-server.
0m0.1s DEBUG: Command ok: ['dpkg', '--info', 'bitz-server-dbg_0.1.6-1_amd64.deb']
0m0.1s DEBUG: Starting command: ['dpkg', '--info', 'libicap0-dbg_0.1.6-1_amd64.deb']
0m0.1s DUMP:
new debian package, version 2.0.
size 334462 bytes: control archive=1066 bytes.
1144 bytes, 27 lines control
332 bytes, 4 lines md5sums
Package: libicap0-dbg
Source: bitz-server
Version: 0.1.6-1
Architecture: amd64
Maintainer: Jörg Frings-Fürst <debian@jff-webhosting.net>
Installed-Size: 349
Depends: libicap0 (= 0.1.6-1)
Section: debug
Priority: extra
Multi-Arch: same
Homepage: https://github.com/uditha-atukorala/bitz-server
Description: ICAP server (RFC 3507) implementation in C++ (library debug symbols)
The main goal of this project is to create an ICAP server (RFC 3507)
implementation in C++ to use the power of object oriented programming.
.
Starting from scratch, the server is developed with a modular architecture
in mind. The server core (written in C++) will handle the client requests,
manage workers (child processes) etc. and will provide basic handlers to serve
ICAP requests.
.
To extend this core functionality the idea is to have pluggable modules
(like Apache server modules). These modules will provide features like
content filtering, anti-virus scanning etc. and to make it easier to write
(and faster to implement) such modules there is hope to exploit Python
programming language.
.
This package holds the debug symbols for libicap0.
0m0.1s DEBUG: Command ok: ['dpkg', '--info', 'libicap0-dbg_0.1.6-1_amd64.deb']
0m0.1s DEBUG: Created temporary directory /tmp/tmpDXAZc1
0m0.1s DEBUG: Unpacking ../../sid-amd64-base.tgz into /tmp/tmpDXAZc1
0m0.1s DEBUG: Starting command: ['tar', '-C', '/tmp/tmpDXAZc1', '-zxf', '../../sid-amd64-base.tgz']
0m3.4s DEBUG: Command ok: ['tar', '-C', '/tmp/tmpDXAZc1', '-zxf', '../../sid-amd64-base.tgz']
0m3.4s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'mount', '-t', 'proc', 'proc', '/proc']
0m3.4s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'mount', '-t', 'proc', 'proc', '/proc']
0m3.4s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'mount', '-t', 'devpts', 'devpts', '/dev/pts']
0m3.4s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'mount', '-t', 'devpts', 'devpts', '/dev/pts']
0m3.4s DEBUG: sources.list:
deb http://mirror.1und1.de/debian/ sid main
deb http://mirror.1und1.de/debian/ sid non-free
deb http://mirror.1und1.de/debian/ sid contrib
0m3.4s DEBUG: Created policy-rc.d and chmodded it.
0m3.4s DEBUG: Created resolv.conf.
0m3.4s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'apt-get', 'update']
0m25.2s DUMP:
Get:1 http://mirror.1und1.de sid InRelease [204 kB]
Get:2 http://mirror.1und1.de sid/main amd64 Packages [7197 kB]
Get:3 http://mirror.1und1.de sid/non-free amd64 Packages [89.2 kB]
Get:4 http://mirror.1und1.de sid/contrib amd64 Packages [54.6 kB]
Get:5 http://mirror.1und1.de sid/contrib Translation-en [42.8 kB]
Get:6 http://mirror.1und1.de sid/main Translation-en [4883 kB]
Get:7 http://mirror.1und1.de sid/non-free Translation-en [77.2 kB]
Fetched 12.5 MB in 19s (645 kB/s)
Reading package lists...
0m25.2s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'apt-get', 'update']
0m25.2s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'apt-get', '-yf', 'dist-upgrade']
0m25.5s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
0m25.5s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'apt-get', '-yf', 'dist-upgrade']
0m25.5s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'apt-get', 'clean']
0m25.5s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'apt-get', 'clean']
0m27.5s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '--get-selections', '*']
0m27.5s DUMP:
acl install
adduser install
apt install
aptitude install
aptitude-common install
base-files install
base-passwd install
bash install
binutils install
bsdutils install
build-essential install
bzip2 install
coreutils install
cpp install
cpp-4.9 install
dash install
debconf install
debconf-i18n install
debian-archive-keyring install
debianutils install
diffutils install
dmsetup install
dpkg install
dpkg-dev install
e2fslibs:amd64 install
e2fsprogs install
findutils install
g++ install
g++-4.9 install
gcc install
gcc-4.7-base:amd64 install
gcc-4.8-base:amd64 install
gcc-4.9 install
gcc-4.9-base:amd64 install
gcc-5-base:amd64 install
gnupg install
gpgv install
grep install
gzip install
hostname install
init install
initscripts install
insserv install
libacl1:amd64 install
libapt-pkg4.12:amd64 install
libasan1:amd64 install
libatomic1:amd64 install
libattr1:amd64 install
libaudit-common install
libaudit1:amd64 install
libblkid1:amd64 install
libboost-iostreams1.55.0:amd64 install
libbz2-1.0:amd64 install
libc-bin install
libc-dev-bin install
libc6:amd64 install
libc6-dev:amd64 install
libcap2:amd64 install
libcap2-bin install
libcilkrts5:amd64 install
libcloog-isl4:amd64 install
libcomerr2:amd64 install
libcryptsetup4:amd64 install
libcwidget3:amd64 install
libdb5.3:amd64 install
libdebconfclient0:amd64 install
libdevmapper1.02.1:amd64 install
libdpkg-perl install
libfdisk1:amd64 install
libffi6:amd64 install
libgcc-4.9-dev:amd64 install
libgcc1:amd64 install
libgcrypt20:amd64 install
libgdbm3:amd64 install
libglib2.0-0:amd64 install
libgmp10:amd64 install
libgomp1:amd64 install
libgpg-error0:amd64 install
libgpm2:amd64 install
libisl10:amd64 install
libisl13:amd64 install
libitm1:amd64 install
libkmod2:amd64 install
liblocale-gettext-perl install
liblsan0:amd64 install
liblzma5:amd64 install
libmount1:amd64 install
libmpc3:amd64 install
libmpfr4:amd64 install
libncurses5:amd64 install
libncursesw5:amd64 install
libpam-modules:amd64 install
libpam-modules-bin install
libpam-runtime install
libpam0g:amd64 install
libpcre3:amd64 install
libprocps3:amd64 install
libquadmath0:amd64 install
libreadline6:amd64 install
libselinux1:amd64 install
libsemanage-common install
libsemanage1:amd64 install
libsepol1:amd64 install
libsigc++-2.0-0c2a:amd64 install
libslang2:amd64 install
libsmartcols1:amd64 install
libsqlite3-0:amd64 install
libss2:amd64 install
libssh2-1:amd64 install
libstdc++-4.9-dev:amd64 install
libstdc++6:amd64 install
libsystemd0:amd64 install
libtext-charwidth-perl install
libtext-iconv-perl install
libtext-wrapi18n-perl install
libtimedate-perl install
libtinfo5:amd64 install
libtsan0:amd64 install
libubsan0:amd64 install
libudev1:amd64 install
libusb-0.1-4:amd64 install
libustr-1.0-1:amd64 install
libuuid1:amd64 install
libxapian22 install
linux-libc-dev:amd64 install
login install
lsb-base install
make install
mawk install
mc install
mc-data install
mount install
multiarch-support install
ncurses-base install
ncurses-bin install
passwd install
patch install
perl install
perl-base install
perl-modules install
procps install
readline-common install
sed install
sensible-utils install
startpar install
systemd install
systemd-sysv install
sysv-rc install
sysvinit-utils install
tar install
tzdata install
udev install
util-linux install
xz-utils install
zlib1g:amd64 install
0m27.5s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '--get-selections', '*']
0m27.5s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'dpkg-divert', '--list']
0m27.6s DUMP:
diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash
diversion of /bin/sh to /bin/sh.distrib by dash
0m27.6s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'dpkg-divert', '--list']
0m27.6s INFO: apt-cache does not know about any of the requested packages
0m27.6s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpDXAZc1']
0m28.2s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpDXAZc1']
0m29.7s DEBUG: No broken symlinks as far as we can find.
0m29.7s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpDXAZc1']
0m30.4s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpDXAZc1']
0m31.9s DEBUG: No broken symlinks as far as we can find.
0m31.9s DEBUG: Copying bitz-server_0.1.6-1_amd64.deb, bitz-server-doc_0.1.6-1_all.deb, libicap-dev_0.1.6-1_amd64.deb, libicap0_0.1.6-1_amd64.deb, bitz-server-dbg_0.1.6-1_amd64.deb, libicap0-dbg_0.1.6-1_amd64.deb to /tmp/tmpDXAZc1/tmp
0m31.9s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '-i', 'tmp/bitz-server_0.1.6-1_amd64.deb', 'tmp/bitz-server-doc_0.1.6-1_all.deb', 'tmp/libicap-dev_0.1.6-1_amd64.deb', 'tmp/libicap0_0.1.6-1_amd64.deb', 'tmp/bitz-server-dbg_0.1.6-1_amd64.deb', 'tmp/libicap0-dbg_0.1.6-1_amd64.deb']
0m39.5s DUMP:
Selecting previously unselected package bitz-server.
(Reading database ... 12464 files and directories currently installed.)
Preparing to unpack .../bitz-server_0.1.6-1_amd64.deb ...
Unpacking bitz-server (0.1.6-1) ...
Selecting previously unselected package bitz-server-doc.
Preparing to unpack .../bitz-server-doc_0.1.6-1_all.deb ...
Unpacking bitz-server-doc (0.1.6-1) ...
Selecting previously unselected package libicap-dev:amd64.
Preparing to unpack .../libicap-dev_0.1.6-1_amd64.deb ...
Unpacking libicap-dev:amd64 (0.1.6-1) ...
Selecting previously unselected package libicap0:amd64.
Preparing to unpack tmp/libicap0_0.1.6-1_amd64.deb ...
Unpacking libicap0:amd64 (0.1.6-1) ...
Selecting previously unselected package bitz-server-dbg.
Preparing to unpack .../bitz-server-dbg_0.1.6-1_amd64.deb ...
Unpacking bitz-server-dbg (0.1.6-1) ...
Selecting previously unselected package libicap0-dbg:amd64.
Preparing to unpack .../libicap0-dbg_0.1.6-1_amd64.deb ...
Unpacking libicap0-dbg:amd64 (0.1.6-1) ...
dpkg: dependency problems prevent configuration of bitz-server:
bitz-server depends on libconfig++9; however:
Package libconfig++9 is not installed.
bitz-server depends on liblog4cpp5; however:
Package liblog4cpp5 is not installed.
bitz-server depends on init-system-helpers (>= 1.18~); however:
Package init-system-helpers is not installed.
dpkg: error processing package bitz-server (--install):
dependency problems - leaving unconfigured
Setting up bitz-server-doc (0.1.6-1) ...
Setting up libicap0:amd64 (0.1.6-1) ...
dpkg: dependency problems prevent configuration of bitz-server-dbg:
bitz-server-dbg depends on bitz-server (= 0.1.6-1); however:
Package bitz-server is not configured yet.
dpkg: error processing package bitz-server-dbg (--install):
dependency problems - leaving unconfigured
Setting up libicap0-dbg:amd64 (0.1.6-1) ...
Setting up libicap-dev:amd64 (0.1.6-1) ...
Processing triggers for systemd (215-17) ...
Processing triggers for libc-bin (2.19-18) ...
Errors were encountered while processing:
bitz-server
bitz-server-dbg
0m39.5s DEBUG: Command failed (status=1), but ignoring error: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '-i', 'tmp/bitz-server_0.1.6-1_amd64.deb', 'tmp/bitz-server-doc_0.1.6-1_all.deb', 'tmp/libicap-dev_0.1.6-1_amd64.deb', 'tmp/libicap0_0.1.6-1_amd64.deb', 'tmp/bitz-server-dbg_0.1.6-1_amd64.deb', 'tmp/libicap0-dbg_0.1.6-1_amd64.deb']
0m39.5s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'apt-get', '-yf', 'install']
0m45.7s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
Correcting dependencies... Done
The following extra packages will be installed:
init-system-helpers libconfig++9 liblog4cpp5
The following NEW packages will be installed:
init-system-helpers libconfig++9 liblog4cpp5
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
Need to get 183 kB of archives.
After this operation, 515 kB of additional disk space will be used.
Get:1 http://mirror.1und1.de/debian/ sid/main libconfig++9 amd64 1.4.9-2 [38.5 kB]
Get:2 http://mirror.1und1.de/debian/ sid/main liblog4cpp5 amd64 1.0-4 [129 kB]
Get:3 http://mirror.1und1.de/debian/ sid/main init-system-helpers all 1.23 [15.2 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 183 kB in 0s (366 kB/s)
Selecting previously unselected package libconfig++9:amd64.
(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 ... 12812 files and directories currently installed.)
Preparing to unpack .../libconfig++9_1.4.9-2_amd64.deb ...
Unpacking libconfig++9:amd64 (1.4.9-2) ...
Selecting previously unselected package liblog4cpp5.
Preparing to unpack .../liblog4cpp5_1.0-4_amd64.deb ...
Unpacking liblog4cpp5 (1.0-4) ...
Selecting previously unselected package init-system-helpers.
Preparing to unpack .../init-system-helpers_1.23_all.deb ...
Unpacking init-system-helpers (1.23) ...
Setting up libconfig++9:amd64 (1.4.9-2) ...
Setting up liblog4cpp5 (1.0-4) ...
Setting up init-system-helpers (1.23) ...
Setting up bitz-server (0.1.6-1) ...
invoke-rc.d: policy-rc.d denied execution of start.
Setting up bitz-server-dbg (0.1.6-1) ...
Processing triggers for libc-bin (2.19-18) ...
Processing triggers for systemd (215-17) ...
0m45.7s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'apt-get', '-yf', 'install']
0m45.7s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'bitz-server', 'bitz-server-doc', 'libicap-dev', 'libicap0', 'bitz-server-dbg', 'libicap0-dbg']
0m45.7s DUMP:
bitz-server install ok installed
bitz-server-dbg install ok installed
bitz-server-doc install ok installed
libicap-dev install ok installed
libicap0 install ok installed
libicap0-dbg install ok installed
0m45.7s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'bitz-server', 'bitz-server-doc', 'libicap-dev', 'libicap0', 'bitz-server-dbg', 'libicap0-dbg']
0m45.7s INFO: Installation of ['tmp/bitz-server_0.1.6-1_amd64.deb', 'tmp/bitz-server-doc_0.1.6-1_all.deb', 'tmp/libicap-dev_0.1.6-1_amd64.deb', 'tmp/libicap0_0.1.6-1_amd64.deb', 'tmp/bitz-server-dbg_0.1.6-1_amd64.deb', 'tmp/libicap0-dbg_0.1.6-1_amd64.deb'] ok
0m45.7s DEBUG: Removing /tmp/tmpDXAZc1/tmp/bitz-server_0.1.6-1_amd64.deb
0m45.7s DEBUG: Removing /tmp/tmpDXAZc1/tmp/bitz-server-doc_0.1.6-1_all.deb
0m45.8s DEBUG: Removing /tmp/tmpDXAZc1/tmp/libicap-dev_0.1.6-1_amd64.deb
0m45.8s DEBUG: Removing /tmp/tmpDXAZc1/tmp/libicap0_0.1.6-1_amd64.deb
0m45.8s DEBUG: Removing /tmp/tmpDXAZc1/tmp/bitz-server-dbg_0.1.6-1_amd64.deb
0m45.8s DEBUG: Removing /tmp/tmpDXAZc1/tmp/libicap0-dbg_0.1.6-1_amd64.deb
0m45.8s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpDXAZc1']
0m46.4s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpDXAZc1']
0m48.0s DEBUG: No broken symlinks as far as we can find.
0m48.0s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '--get-selections', '*']
0m48.1s DUMP:
acl install
adduser install
apt install
aptitude install
aptitude-common install
base-files install
base-passwd install
bash install
binutils install
bitz-server install
bitz-server-dbg install
bitz-server-doc install
bsdutils install
build-essential install
bzip2 install
coreutils install
cpp install
cpp-4.9 install
dash install
debconf install
debconf-i18n install
debian-archive-keyring install
debianutils install
diffutils install
dmsetup install
dpkg install
dpkg-dev install
e2fslibs:amd64 install
e2fsprogs install
findutils install
g++ install
g++-4.9 install
gcc install
gcc-4.7-base:amd64 install
gcc-4.8-base:amd64 install
gcc-4.9 install
gcc-4.9-base:amd64 install
gcc-5-base:amd64 install
gnupg install
gpgv install
grep install
gzip install
hostname install
init install
init-system-helpers install
initscripts install
insserv install
libacl1:amd64 install
libapt-pkg4.12:amd64 install
libasan1:amd64 install
libatomic1:amd64 install
libattr1:amd64 install
libaudit-common install
libaudit1:amd64 install
libblkid1:amd64 install
libboost-iostreams1.55.0:amd64 install
libbz2-1.0:amd64 install
libc-bin install
libc-dev-bin install
libc6:amd64 install
libc6-dev:amd64 install
libcap2:amd64 install
libcap2-bin install
libcilkrts5:amd64 install
libcloog-isl4:amd64 install
libcomerr2:amd64 install
libconfig++9:amd64 install
libcryptsetup4:amd64 install
libcwidget3:amd64 install
libdb5.3:amd64 install
libdebconfclient0:amd64 install
libdevmapper1.02.1:amd64 install
libdpkg-perl install
libfdisk1:amd64 install
libffi6:amd64 install
libgcc-4.9-dev:amd64 install
libgcc1:amd64 install
libgcrypt20:amd64 install
libgdbm3:amd64 install
libglib2.0-0:amd64 install
libgmp10:amd64 install
libgomp1:amd64 install
libgpg-error0:amd64 install
libgpm2:amd64 install
libicap-dev:amd64 install
libicap0:amd64 install
libicap0-dbg:amd64 install
libisl10:amd64 install
libisl13:amd64 install
libitm1:amd64 install
libkmod2:amd64 install
liblocale-gettext-perl install
liblog4cpp5 install
liblsan0:amd64 install
liblzma5:amd64 install
libmount1:amd64 install
libmpc3:amd64 install
libmpfr4:amd64 install
libncurses5:amd64 install
libncursesw5:amd64 install
libpam-modules:amd64 install
libpam-modules-bin install
libpam-runtime install
libpam0g:amd64 install
libpcre3:amd64 install
libprocps3:amd64 install
libquadmath0:amd64 install
libreadline6:amd64 install
libselinux1:amd64 install
libsemanage-common install
libsemanage1:amd64 install
libsepol1:amd64 install
libsigc++-2.0-0c2a:amd64 install
libslang2:amd64 install
libsmartcols1:amd64 install
libsqlite3-0:amd64 install
libss2:amd64 install
libssh2-1:amd64 install
libstdc++-4.9-dev:amd64 install
libstdc++6:amd64 install
libsystemd0:amd64 install
libtext-charwidth-perl install
libtext-iconv-perl install
libtext-wrapi18n-perl install
libtimedate-perl install
libtinfo5:amd64 install
libtsan0:amd64 install
libubsan0:amd64 install
libudev1:amd64 install
libusb-0.1-4:amd64 install
libustr-1.0-1:amd64 install
libuuid1:amd64 install
libxapian22 install
linux-libc-dev:amd64 install
login install
lsb-base install
make install
mawk install
mc install
mc-data install
mount install
multiarch-support install
ncurses-base install
ncurses-bin install
passwd install
patch install
perl install
perl-base install
perl-modules install
procps install
readline-common install
sed install
sensible-utils install
startpar install
systemd install
systemd-sysv install
sysv-rc install
sysvinit-utils install
tar install
tzdata install
udev install
util-linux install
xz-utils install
zlib1g:amd64 install
0m48.1s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '--get-selections', '*']
0m49.1s DEBUG: Starting command: ['debsums', '--root', '/tmp/tmpDXAZc1', '-ac']
0m50.3s DEBUG: Command ok: ['debsums', '--root', '/tmp/tmpDXAZc1', '-ac']
0m50.3s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m50.4s DUMP:
0.13
0m50.4s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m50.4s INFO: Running adequate version 0.13 now.
0m50.4s DEBUG: Starting command: ['adequate', '--root', '/tmp/tmpDXAZc1', 'bitz-server', 'bitz-server-doc', 'libicap-dev', 'libicap0', 'bitz-server-dbg', 'libicap0-dbg']
0m50.6s DEBUG: Command ok: ['adequate', '--root', '/tmp/tmpDXAZc1', 'bitz-server', 'bitz-server-doc', 'libicap-dev', 'libicap0', 'bitz-server-dbg', 'libicap0-dbg']
0m50.6s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'apt-get', 'remove', '--no-install-recommends', 'libconfig++9:amd64', 'libicap-dev:amd64', 'liblog4cpp5', 'libicap0-dbg:amd64', 'libicap0:amd64', 'init-system-helpers', 'bitz-server-dbg', 'bitz-server', 'bitz-server-doc']
0m55.5s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be REMOVED:
bitz-server bitz-server-dbg bitz-server-doc init-system-helpers libconfig++9
libicap-dev libicap0 libicap0-dbg liblog4cpp5
0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded.
After this operation, 3211 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 ... 12837 files and directories currently installed.)
Removing bitz-server-dbg (0.1.6-1) ...
Removing bitz-server (0.1.6-1) ...
invoke-rc.d: policy-rc.d denied execution of stop.
Removing bitz-server-doc (0.1.6-1) ...
Removing init-system-helpers (1.23) ...
Removing libconfig++9:amd64 (1.4.9-2) ...
Removing libicap-dev:amd64 (0.1.6-1) ...
Removing libicap0-dbg:amd64 (0.1.6-1) ...
Removing libicap0:amd64 (0.1.6-1) ...
Removing liblog4cpp5 (1.0-4) ...
Processing triggers for libc-bin (2.19-18) ...
0m55.5s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'apt-get', 'remove', '--no-install-recommends', 'libconfig++9:amd64', 'libicap-dev:amd64', 'liblog4cpp5', 'libicap0-dbg:amd64', 'libicap0:amd64', 'init-system-helpers', 'bitz-server-dbg', 'bitz-server', 'bitz-server-doc']
0m55.5s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '--purge', 'libconfig++9:amd64', 'libicap-dev:amd64', 'liblog4cpp5', 'libicap0-dbg:amd64', 'libicap0:amd64', 'init-system-helpers']
0m56.9s DUMP:
(Reading database ... 12468 files and directories currently installed.)
Removing libconfig++9:amd64 (1.4.9-2) ...
Purging configuration files for libconfig++9:amd64 (1.4.9-2) ...
dpkg: warning: ignoring request to remove libicap-dev which isn't installed
Removing liblog4cpp5 (1.0-4) ...
Purging configuration files for liblog4cpp5 (1.0-4) ...
dpkg: warning: ignoring request to remove libicap0-dbg which isn't installed
Removing libicap0:amd64 (0.1.6-1) ...
Purging configuration files for libicap0:amd64 (0.1.6-1) ...
dpkg: warning: ignoring request to remove init-system-helpers which isn't installed
0m56.9s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '--purge', 'libconfig++9:amd64', 'libicap-dev:amd64', 'liblog4cpp5', 'libicap0-dbg:amd64', 'libicap0:amd64', 'init-system-helpers']
0m56.9s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '--purge', 'bitz-server-dbg', 'bitz-server', 'bitz-server-doc']
0m57.6s DUMP:
dpkg: warning: ignoring request to remove bitz-server-dbg which isn't installed
(Reading database ... 12468 files and directories currently installed.)
Removing bitz-server (0.1.6-1) ...
Purging configuration files for bitz-server (0.1.6-1) ...
dpkg: warning: ignoring request to remove bitz-server-doc which isn't installed
0m57.6s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '--purge', 'bitz-server-dbg', 'bitz-server', 'bitz-server-doc']
0m57.6s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '--purge', '--pending']
0m57.6s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '--purge', '--pending']
0m57.6s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '--remove', '--pending']
0m57.7s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'dpkg', '--remove', '--pending']
0m57.7s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpDXAZc1']
0m58.3s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpDXAZc1']
0m59.9s DEBUG: No broken symlinks as far as we can find.
0m59.9s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'dpkg-divert', '--list']
0m59.9s DUMP:
diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash
diversion of /bin/sh to /bin/sh.distrib by dash
0m59.9s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'dpkg-divert', '--list']
0m59.9s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'apt-get', 'clean']
0m59.9s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'apt-get', 'clean']
1m2.2s ERROR: FAIL: Package purging left files on system:
/etc/systemd/system/bitz-server.service -> /dev/null not owned
/var/lib/systemd/deb-systemd-helper-enabled/ not owned
/var/lib/systemd/deb-systemd-helper-enabled/bitz-server.service.dsh-also not owned
/var/lib/systemd/deb-systemd-helper-masked/ not owned
/var/lib/systemd/deb-systemd-helper-masked/bitz-server.service not owned
1m2.3s ERROR: FAIL: Installation and purging test.
1m2.9s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'umount', '/proc']
1m2.9s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'umount', '/proc']
1m2.9s DEBUG: Starting command: ['chroot', '/tmp/tmpDXAZc1', 'umount', '/dev/pts']
1m3.0s DEBUG: Command ok: ['chroot', '/tmp/tmpDXAZc1', 'umount', '/dev/pts']
1m3.0s DEBUG: Starting command: ['rm', '-rf', '--one-file-system', '/tmp/tmpDXAZc1']
1m3.4s DEBUG: Command ok: ['rm', '-rf', '--one-file-system', '/tmp/tmpDXAZc1']
1m3.4s DEBUG: Removed directory tree at /tmp/tmpDXAZc1
1m3.4s ERROR: piuparts run ends.
|