#!/bin/sh -x

# solidify the comp-ppp archive

CPA=/usr/people/ftp/other/ppp-comp

cd $CPA
PPPFILES="`find incoming -type f -print`"

if test -n "$PPPFILES"; then
    chmod og-w $PPPFILES
    chown Udaver $PPPFILES
    mv -f $PPPFILES .
fi
