<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>Hi,<br>
<br>
The problem is coming from the sed command present in /var/lib/dpkg/info/libpam-yubico.postinst.<br>
<br>
The problem is the secret key string is a base64 string, so it can contain some slashes.<br>
<br>
As slash is the separator of sed command:<br>
<br>
sed -e "s/#DEBCONF_REPLACE/$RET/g"<br>
<br>
sed fails because the slashes in $RET would need to be escaped.<br>
<br>
A simple solution is to change the separator in the sed command by a pipe:<br><br>sed -e "s|#DEBCONF_REPLACE|$RET|g"<br><br>Fab<br>                                       </div></body>
</html>