core-admin/dom0/aux-tools/convert-apptemplate2vm.sh
2013-03-15 23:03:28 +01:00

14 lines
167 B
Bash
Executable File

#!/bin/sh
SRC=$1
DSTDIR=$2
VMNAME=$3
VMDIR=$4
DST=$DSTDIR/$VMNAME-$(basename $SRC)
sed -e "s/%VMNAME%/$VMNAME/" \
-e "s %VMDIR% $VMDIR " \
<$SRC >$DST