if [[ "${BACKUPPC_DATA_DIR}" == "" ]]; then
	config_query BACKUPPC_DD_OK "Default data dir is okay? (/var/backups)" y &&
	if [[ "${BACKUPPC_DD_OK}" == "n" ]]; then
		unset BACKUPPC_DATA_DIR
		config_query_string BACKUPPC_DATA_DIR "Where should it be?" "/var/backups"
	else
		persistent_add BACKUPPC_DATA_DIR
		BACKUPPC_DATA_DIR="/var/backups"
	fi
fi
