#! /bin/sh
set -e

# Replace directory with symlink
dir="/usr/share/php/php-opencloud"
if [ -d $dir ] && [ ! -L $dir ]; then
	if rmdir $dir 2>/dev/null; then
		ln -sf . $dir
	fi
fi

#DEBHELPER#

exit 0
