#!/bin/bash
# Author: Ryan Lewis
# Date: Mon Feb 20, 2006
# passwd-sync: Syncronizes the local passwd file to the master AFS
# passwd file on /afs
CAT=`which cat`
RM=`which rm`
$RM -f /etc/passwd
cp /etc/passwd.backup /etc/passwd
# $CAT /afs/clarkson.edu/common/etc/passwd.Linux >> /etc/passwd
$CAT /etc/passwd.afs >> /etc/passwd