#!/bin/sh
#
# diskless-generate.sh
#
# Developed by Lubomir Host 'rajo' <rajo AT platon.sk>
# Copyright (c) 2005 - 2006 Platon Group, http://platon.sk/
# Licensed under terms of GNU General Public License.
# All rights reserved.
#
# Changelog:
# 2005-11-25 - created
#
# $Platon$
DEFAULT_CONFIG="${DEFAULT_CONFIG:=/etc/default/diskless}"
if [ -f "$DEFAULT_CONFIG" ]; then
echo "Reading config file $DEFAULT_CONFIG"
. $DEFAULT_CONFIG
fi
#RSYNC="${RSYNC:=$DEBUG rsync -aH --progress --delete}"
RSYNC="${RSYNC:=$DEBUG rsync -aH --progress}"
Platon Group <platon@platon.sk> http://platon.sk/
|