#!/bin/bash # ideally: domtool-create-local-root service+ # service = bind, apache, exim, courier, etc. # actually: domtool-create-local-root -> every possible service dir is created LOCALROOT=`../bin/domtool-config -path local-root` if [ -z "$LOCALROOT" ]; then echo "ERROR: local root not set. Domtool not built?" exit 1 fi set -x mkdir -p $LOCALROOT for d in firewall vhosts zones; do mkdir $LOCALROOT/$d done # domtool probably ought to ensure directories exist, since the # services configured by a worker are set statically. It makes little # sense for a worker to advertise that it can configure a service, and # not actually be able to do so.