Welcome, Guest. Please login or register.
Did you miss your activation email?

Author Topic:  [SOLVED] manpages update collides with initscripts  (Read 2238 times)

Offline samoht

  • User
  • Posts: 478
Code: [Select]
# LANG=C apt install manpages
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be upgraded:
  manpages
1 upgraded, 0 newly installed, 0 to remove and 8 not upgraded.
Need to get 0 B/1.212 kB of archives.
After this operation, 38,9 kB of additional disk space will be used.
Reading changelogs... Done
(Reading database ... 236540 files and directories currently installed.)
Preparing to unpack .../manpages_4.09-1_all.deb ...
Unpacking manpages (4.09-1) over (4.08-1) ...
dpkg: error processing archive /var/cache/apt/archives/manpages_4.09-1_all.deb (--unpack):
 trying to overwrite '/usr/share/man/man5/tmpfs.5.gz', which is also in package initscripts 2.88dsf-59.8
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/manpages_4.09-1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

# dpkg -S /usr/share/man/man5/tmpfs.5.gz
initscripts: /usr/share/man/man5/tmpfs.5.gz

Purge manpages and reinstall from testing repo ...
... or purge initscripts?
« Last Edit: 2016/12/13, 21:04:51 by samoht »

Offline Camelot

  • User
  • Posts: 81
Re: manpages update collides with initscripts
« Reply #1 on: 2016/12/13, 11:36:46 »
Purge manpages and reinstall from testing repo ...
... or purge initscripts?

Waiting…
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=847998

Offline samoht

  • User
  • Posts: 478
Re: manpages update collides with initscripts
« Reply #2 on: 2016/12/13, 16:27:56 »
Thanks, @Camelot, for the bugreport link.
Michael Biebl's comment (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=847998#30):
Code: [Select]
... as you are using stretch/sid and systemd, you can safely
purge the initscripts package (along with sysv-rc, insserv and startpar)
is the answer to my question  ;)
Greetings
Tom

Offline Camelot

  • User
  • Posts: 81
Re: manpages update collides with initscripts
« Reply #3 on: 2016/12/13, 17:33:19 »
I purge this and works.
Code: [Select]
initscripts startpar sysv-rc sysv-rc-confyou can solved this.

Offline samoht

  • User
  • Posts: 478
Re: [SOLVED] manpages update collides with initscripts
« Reply #4 on: 2016/12/13, 21:17:29 »
Temporary fix in new manpages package:

Code: [Select]
manpages (4.09-2) unstable; urgency=medium   
    * Do not install tmpfs.5 (Closes: #847998)
    This is a temporary fix to allow the installation with initscripts,
    because the manpage tmpfs.5 has been newly introduced in manpages 4.09.
    In the long run, the naming conflict should be sorted out between
    manpages and initscripts.

... or

Code: [Select]
# apt purge initscripts startpar sysv-rc sysv-rc-conf insserv
« Last Edit: 2016/12/13, 21:23:26 by samoht »