postinstall script /var/lib/dpkg/info/firebird3.0-server.postinst exits with 
error after command:
`adduser --system --quiet --home /var/lib/firebird --group --gecos "Firebird 
Database Administator" firebird`
when user 'firebird' exists or/and it is not system user.

Following patch should fix this bug (script will check if firebird user
exists before trying to add it):

diff firebird3.0-server.postinst.orig firebird3.0-server.postinst 
34,35c34,38
<     adduser --system --quiet --home /var/lib/firebird \
<         --group --gecos "Firebird Database Administator" firebird
---
>     if ! getent passwd firebird >/dev/null; then
>         adduser --system --quiet --home /var/lib/firebird \
>             --group --gecos "Firebird Database Administator" firebird
>     fi
>

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1763727

Title:
  package firebird3.0-server 3.0.2.32703.ds4-9 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firebird3.0/+bug/1763727/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to