Your IP : 216.73.216.189


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : /var/lib/dpkg/info/cryptsetup.preinst

#!/bin/sh

set -e

if [ "$1" = install ] && [ ! -f "/etc/crypttab" ]; then
	cat <<-EOC >/etc/crypttab
	# <target name>	<source device>		<key file>	<options>
	EOC
fi



exit 0