#!/bin/sh
set -e

if [ "$1" = configure ]; then
    echo "/usr/lib/x86_64-linux-gnu/nss" > /etc/ld.so.conf.d/nss.conf
    ldconfig
fi


