#!/bin/csh -f

set fm = /afs/sipb.mit.edu/project/periodic-postings/news.answers/faq-maintainers
set fma = /afs/sipb.mit.edu/project/periodic-postings/news.answers/faq-maintainers-announce

if (! (-f $fm && -f $fma)) then
	echo "Can't find $fm and $fma\!"
	exit 1
endif

#echo Updating faq-maintainers....
# awk '(! /^#/) {print $1}' $fm | blanche -v -file - faq-maintainers
#echo "	NOT UPDATING MIT-BASED MOIRA LIST"
echo "Not updating faq-maintainers: we don't maintain this list anymore"
if ($status) exit 1
echo  "Updating fma-actual-distribution (faq-maintainers-announce)...."
awk '(! /^#/) {print $1}' $fma | blanche -v -file - fma-actual-distribution
if ($status) exit 1

