#!/bin/sh

if [ ! -e /var/log/angie ]; then
	install -d -m 755 -o root -g root /var/log/angie || :
fi
if [ ! -e /var/lib/angie/acme ]; then
	install -d -m 700 -o root -g root /var/lib/angie/acme || :
fi

cat <<EOM
----------------------------------------------------------------------

Thanks for using Angie!

Please find the official documentation for Angie here:
* https://en.angie.software/angie/docs/

----------------------------------------------------------------------
EOM

exit 0
