#!/bin/sh
if [ -f /usr/bin/cvspwd ]; then
  echo "A cvspwd is already there, moving to /tmp/cvspwd"
  mv /usr/bin/cvspwd /tmp/cvspwd
  cp cvspwd /usr/bin
else
  cp cvspwd /usr/bin
fi
