9 lines
186 B
Bash
9 lines
186 B
Bash
#!/bin/bash
|
|
if [ ! -e buildtools.conf ]; then
|
|
cp buildtools.conf.delivered buildtools.conf
|
|
fi
|
|
source buildtools.conf
|
|
|
|
isopath=$ISO_DEST_PATH
|
|
rsync -avz /mnt/custom/isoxfer/ $isopath
|