#!/bin/bash # # (c) 2002 Linux-Consulting.com All Rights Reserved... # Released under GPL # # Latest Version: # -------------- # http://www.Linux-Consulting.com/AutomatedAdmin # # # 04-Jan-02 amo Date-of-Birth - for release # # # Which MasterServer to Update From # --------------------------------- # MasterServer:/opt/Scripts/Update.pl -- update script # # LocalHost:/opt/Scripts/Update.client.sh -- run on each host via cron # # # == # == These Scripts Assume a secure local LAN within the company # == # # # Single Update Scripts is at # --------------------------- # # Redhat-7.0 #ASTER="Server1" # # Redhat-7.2 MASTER="Server2" # # Slackware-8.0 #ASTER="Server3" # # # Mount the secure local master server # mount $MASTER:/opt /mnt/test # # # See what is different on the Master vs each client that checked in for new Updates # /mnt/test/Scripts/Update.pl -s $MASTER # # done umount /mnt/test # # end of file