#!/bin/sh
#
# Copyright (C) 1995  Lars Berntzon
#
if df / 2>/dev/null | grep :/ > /dev/null; then
    echo false
else
    echo true
fi
