#!/bin/sh

set -e

. /usr/share/debconf/confmodule

db_get disk-detect/iscsi/enable
if [ "$RET" = "true" ]
then

	#
	# Copy the configuration to the target...
	#
	cp -a /etc/iscsi /target/etc/

fi
