Package: plymouth
Version: 0.8.3-18
Severity: normal

# plymouth-set-default-theme solar
# echo $?
1

The command works fine though.

The wrong error code (in this case) is caused by a shell
scripting error:

  [ $DO_INITRD_REBUILD -ne 0 ] && 
(${PLYMOUTH_LIBEXECDIR}/plymouth/plymouth-update-initrd)

This should be:

  if [ $DO_INITRD_REBUILD -ne 0 ] ; then
    (${PLYMOUTH_LIBEXECDIR}/plymouth/plymouth-update-initrd)
  fi

instead as it's invoked unter 'set -e'.

regards,
-mika-



-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

Reply via email to