#!/bin/sh

echo Tests that a few basic RFCs are present

set -e

cd /usr/share/doc/RFC/links

for i in 793 2821; do
  test -f rfc${i}.txt.gz || \
      test -f rfc${i}.txt
done
