blob: 39bdcf7db4b3c956e89f3a539c44fc9839b277b5 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
cd /usr/portage
#allow group write and execute perms
umask 022
cvs update -dP
cd /usr/local/httpd/htdocs
/usr/sbin/pytext index.pyhtml > index.html
echo "Web site regenerated."
|