#!/bin/bash

# Exit on error
set -e

# Source debconf library.
. /usr/share/debconf/confmodule

db_fset dknpamsshfsmountconfig/fuse-info seen false
db_fset dknpamsshfsmountconfig/pammount-info seen false
db_fset dknpamsshfsmountconfig/fileserver-host seen false
db_fset dknpamsshfsmountconfig/ldap-gid seen false

db_input high dknpamsshfsmountconfig/fuse-info || true
db_input high dknpamsshfsmountconfig/pammount-info || true
db_input high dknpamsshfsmountconfig/fileserver-host || true
db_input high dknpamsshfsmountconfig/ldap-gid || true

db_go
