#!/bin/sh -e

# Debian (live-boot)
PLACES="$PLACES /live/filesystem.dir"
# Ubuntu (casper)
PLACES="$PLACES /casper/filesystem.dir"
PLACES="$PLACES /install/filesystem.dir"

dir_prepare() {
	cd $place
}

dir_teardown() {
	:
}

dir_count() {
	echo `find . | wc -l`
}
