You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
292 B

#!/usr/bin/env bash
set -e
DOMAIN=${SIONA_DOMAIN}
DIR="/var/www/$DOMAIN"
echo $$ >> $DIR/PID
# make a backup so we can diff them
cp $DIR/{index,index-prev}.html
# let index.html settle
sleep 2
perl $DIR/bin/update.pl $DIR/api &> $DIR/index-new.html
cp $DIR/index-new.html $DIR/index.html