#!/bin/sh
# Return 0 if we are in a container, 1 if not
status lxcguest | grep -q start
if [ $? -eq 0 ]; then
	exit 0
fi
exit 1
