>Does anyone know the steps to Y2K-validate AFS functionality?
>Even though Transarc has certified our release (3.4a p5.67) we are being
>asked to script a validation.
Here's a short Y2K validation script that has never failed me yet:
#!/bin/sh
if /bin/true; then
echo "System has passed Y2K test successfully"
else
echo "System has FAILED Y2K test!"
fi
exit 0
--Ken
PS - Okay, okay, that wasn't nice .... but wouldn't setting the clock forward
on a client and server be really the only way to test this?