#!/bin/bash
[[ -d repository ]] || { echo ERROR: directory repository not found ; exit 1 ;}
for target in $(repository/FIND-ALL-DOMAINS) 
do
  echo INFO: creating .SsmDepot in $target
  echo `pwd -P`/repository >$target/.SsmDepot
done
